From 0110cbd7cbcf3f51ce3870e5f7b9b542cda0d6f0 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Tue, 30 Apr 2024 16:14:43 +0200 Subject: [PATCH] wip #6888 --- routes/web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index a278fdf..ae5b16f 100644 --- a/routes/web.php +++ b/routes/web.php @@ -18,6 +18,6 @@ Route::match(['post'], '/landing/login', \App\Http\Controllers\LandingController Route::match(['post','get'], '/landing/forgotpassword', \App\Http\Controllers\LandingController::class . '@forgotPassword'); Route::match(['get'], '/landing/logout', \App\Http\Controllers\LandingController::class . '@logout'); Route::match(['get'], '/landing/resetpassword/{email}/{token}', \App\Http\Controllers\LandingController::class . '@resetPassword'); -Route::match(['post'], '/landing/resetpassword', \App\Http\Controllers\LandingController::class . '@changePassword'); +Route::match(['post'], '/landing/changepassword', \App\Http\Controllers\LandingController::class . '@changePassword'); Route::get('/{path?}', \App\Http\Controllers\LandingController::class . '@catchall')->where('path', '.*'); -- 2.39.5