We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
laravel/framework#38552 password.reset route not find
The text was updated successfully, but these errors were encountered:
As a temporary fix, you may add this on your NovaServiceProvider
NovaServiceProvider
use Illuminate\Auth\Notifications\ResetPassword; use Laravel\Nova\Nova; // ... Nova::serving(function () { ResetPassword::createUrlUsing(function ($notifiable, $token) { return route('nova.password.reset', $token); }); });
Sorry, something went wrong.
This has been fixed via Laravel Framework v8.60.0
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.
crynobone
No branches or pull requests
Description:
laravel/framework#38552
password.reset route not find
Detailed steps to reproduce the issue on a fresh Nova installation:
The text was updated successfully, but these errors were encountered: