Skip to content

Commit

Permalink
Fix route name
Browse files Browse the repository at this point in the history
  • Loading branch information
riasvdv committed Oct 30, 2024
1 parent 575c6d1 commit b427432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
Route::get('forgot-password', [ForgotPasswordController::class, 'showLinkRequestForm'])->name('forgot-password');
Route::post('forgot-password', [ForgotPasswordController::class, 'sendResetLinkEmail'])->name('password.email');

Route::get('reset-password', [ResetPasswordController::class, 'showResetForm'])->name('mailcoach.password.reset');
Route::get('reset-password', [ResetPasswordController::class, 'showResetForm'])->name('password.reset');
Route::post('reset-password', [ResetPasswordController::class, 'reset'])->name('password.update');

Route::middleware('web', WelcomesNewUsers::class)->group(function () {
Expand Down

0 comments on commit b427432

Please sign in to comment.