Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nova is not compatible with password reset changes in laravel 8.57 #3542

Closed
mpoma opened this issue Sep 7, 2021 · 3 comments
Closed

Nova is not compatible with password reset changes in laravel 8.57 #3542

mpoma opened this issue Sep 7, 2021 · 3 comments
Assignees
Labels
bug Verified bug by the Nova team

Comments

@mpoma
Copy link

mpoma commented Sep 7, 2021

  • Laravel Version: #.#.#
  • Nova Version: #.#.#
  • PHP Version: #.#.#
  • Database Driver & Version:
  • Operating System and Version: #.#
  • Browser type and version: #.#
  • Reproduction Repository: https://github.com/###/###

Description:

laravel/framework#38552
password.reset route not find

Detailed steps to reproduce the issue on a fresh Nova installation:

@crynobone crynobone reopened this Sep 8, 2021
@crynobone crynobone added the bug Verified bug by the Nova team label Sep 8, 2021
@crynobone crynobone self-assigned this Sep 8, 2021
@crynobone
Copy link
Member

As a temporary fix, you may add this on your NovaServiceProvider

use Illuminate\Auth\Notifications\ResetPassword;
use Laravel\Nova\Nova;

// ...

Nova::serving(function () {
    ResetPassword::createUrlUsing(function ($notifiable, $token) {
        return route('nova.password.reset', $token);
    });
});

@crynobone
Copy link
Member

This has been fixed via Laravel Framework v8.60.0

@github-actions
Copy link

github-actions bot commented Oct 5, 2021

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Oct 5, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Verified bug by the Nova team
Projects
None yet
Development

No branches or pull requests

3 participants