Laravel - Password Reset - The Password Reset Link Request Form
First, we will define the routes that are needed to request password reset links. To get started, we will define a route that returns a view with the password reset link request form:
Route::get('/forgot-password', function () {
return view('auth.forgot-password');
})->middleware('guest')->name('password.request');
The view that is returned by this route should have a form containing an email
field, which will allow the user to request a password reset link for a given email address.