validate(['email' => 'required|email']); $response = Password::sendResetLink( $request->only('email') ); return $response == Password::RESET_LINK_SENT ? back()->with(['status' => __($response)]) : back()->withErrors(['email' => __($response)]); } }