Fix missing route name used by the ResetPassword flow

This commit is contained in:
Bubka 2022-04-15 15:12:23 +02:00
parent a131d726f5
commit 2ba66f5c96

View File

@ -19,7 +19,7 @@
Route::group(['middleware' => ['guest', 'rejectIfDemoMode']], function () {
Route::post('user', 'Auth\RegisterController@register')->name('user.register');
Route::post('user/password/lost', 'Auth\ForgotPasswordController@sendResetLinkEmail')->name('user.password.lost');;
Route::post('user/password/reset', 'Auth\ResetPasswordController@reset')->name('user.password.reset');
Route::post('user/password/reset', 'Auth\ResetPasswordController@reset')->name('password.reset');
Route::post('webauthn/login/options', [WebAuthnLoginController::class, 'options'])->name('webauthn.login.options');
Route::post('webauthn/lost', [WebAuthnDeviceLostController::class, 'sendRecoveryEmail'])->name('webauthn.lost');
Route::post('webauthn/recover/options', [WebAuthnRecoveryController::class, 'options'])->name('webauthn.recover.options');