Этот токен сброса пароля недействителен — с помощью laravel

#laravel #passwords #token #change-password

#laravel #пароли #токен #изменить-пароль

Вопрос:

У меня возникла проблема при сбросе пароля, я использую маршруты аутентификации и просмотр 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);
}
  

я не знаю, в чем проблема?
ваша помощь будет высоко оценена?введите описание изображения здесь

Я также прикрепил снимок экрана, и он встроен в cold, предоставленный laravel, я не писал никакого кода.

Комментарии:

1. Проблема в том, что срок действия вашего токена в таблице password_reset уже истек (срок действия можно настроить в /config/auth.php . Это не имеет ничего общего с токеном формы ( _token ), как упоминал @Shokry Mohamed

Ответ №1:

Добавьте этот тег в заголовок

 <meta name="csrf-token" content="{{ csrf_token() }}">
  

Комментарии:

1. я все еще не понимаю, почему появляется эта ошибка, не могли бы вы меня еще раз направить