Answers for "how to use forget password for seperate table laravel"

PHP
2

reset password multipple database laravel

'passwords' => [
        'users' => [
            'provider' => 'users',
            'table' => 'password_resets',
            'connection' => 'mysql',
            'expire' => 60,
        ],
    ],
Posted by: Guest on July-07-2021
1

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.
Posted by: Guest on August-13-2020

Code answers related to "how to use forget password for seperate table laravel"

Browse Popular Code Answers by Language