Sagar724254
Results
1
comments of
Sagar724254
request()->validate([ 'email' => 'required|email' ]); $status = Password::sendResetLink( request()->only('email') ); return $status === Password::RESET_LINK_SENT ? back()->with(['status' => __($status)]) : back()->withErrors(['email' => __($status)]); I have multi roler based authentication so i...