This commit is contained in:
2025-10-29 01:29:58 +05:00
parent 3fe38d5e26
commit 1499fc531d
6 changed files with 44 additions and 9 deletions

View File

@@ -170,4 +170,14 @@ class RegisterController extends Controller
return redirect(config()->string('module.base-auth.redirect_path'));
}
/**
* Resend verification
*/
public function resendVerification(): RedirectResponse
{
sendSMSVerification((string) user()->phone);
return to_route('sms-verification');
}
}