From: Vincent Vanwaelscappel Date: Tue, 30 Apr 2024 14:14:43 +0000 (+0200) Subject: wip #6888 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=0110cbd7cbcf3f51ce3870e5f7b9b542cda0d6f0;p=bastide-resah.git wip #6888 --- 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', '.*');