Skip to content

Commit

Permalink
Merge pull request #68 from ImJustToNy/patch-1
Browse files Browse the repository at this point in the history
fix: route name for password reset
  • Loading branch information
freekmurze authored May 21, 2024
2 parents 67dce12 + 3d3cf7a commit c1ac10a
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('password.reset');
Route::get('reset-password', [ResetPasswordController::class, 'showResetForm'])->name('mailcoach.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 c1ac10a

Please sign in to comment.