Open file /routes/web.php and modify the line below; Auth::routes(['verify' => true, 'register' => settingEnabled('allow_client_registration')]); Change it to; Auth::routes(['register' => settingEnabled('allow_client_registration')]); (Remove 'verify' => true,)
Auth::routes(['verify' => true, 'register' => settingEnabled('allow_client_registration')]);
Auth::routes(['register' => settingEnabled('allow_client_registration')]);
is there a way to only enable e-mail verifications for accounts on registration and not when they are added by an administrator? I sometimes add customers manually and they still have to verify. I would still like to verify e-mails for people who register on their own, however. Thanks!
cswilson When email verification is enabled, users who register through the form and those added by admin have to verify their account. I'll however add your request (disable verification on users added by admin but enable on registration form) in the next update.
wmandai Thanks! you guys have been wonderful.
Isn't working here! I need to disable the email verification or know how to make it work! I can't receive the email to verify the account and when I press the "resend" button it gives me a response 220.
How can I solve this? Disable or make the user receive the email!!