У меня проблема с паролем сброса. Я использую auth маршруты и просмотр laravel, и я запустил php artisan make: auth и его сгенерированные встроенные маршруты и представления, но я не знаю, в чем проблема:
public function showResetForm(Request $request, $token = null)
{
return view('auth.passwords.reset')->with(
['token' => $token, 'email' => $request->email]
);
}
public function reset(Request $request)
{
$this->validate($request, $this->rules(), $this->validationErrorMessages());
// Here we will attempt to reset the user's password. If it is successful we
// will update the password on an actual user model and persist it to the
// database. Otherwise we will parse the error and return the response.
$response = $this->broker()->reset(
$this->credentials($request), function ($user, $password) {
$this->resetPassword($user, $password);
}
);
// If the password was successfully reset, we will redirect the user back to
// the application's home authenticated view. If there is an error we can
// redirect them back to where they came from with their error message.
return $response == Password::PASSWORD_RESET
? $this->sendResetResponse($response)
: $this->sendResetFailedResponse($request, $response);
}
Я не знаю, в чем проблема?
Ваша помощь будет высоко оценена?
Я также прикрепил снимок экрана, и это встроенный холод, предоставленный laravel, я не написал никакого кода.