reset password multipple database laravel
'passwords' => [
'users' => [
'provider' => 'users',
'table' => 'password_resets',
'connection' => 'mysql',
'expire' => 60,
],
],
reset password multipple database laravel
'passwords' => [
'users' => [
'provider' => 'users',
'table' => 'password_resets',
'connection' => 'mysql',
'expire' => 60,
],
],
disable forgot password in laravel 7
1. Simple Method :
Auth::routes(['reset' => false]);
2. If that doesnt work, in ForgotPasswordController, you will see that a trait
SendsPasswordResetEmails is used, in that you will find the function
showLinkRequestForm which you can override:
public function showLinkRequestForm()
{
return view('auth.passwords.email');
}
and replace it with a redirect to go back, or a 404, or something else that you
want.
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us