feat: add forget password in app

This commit is contained in:
2025-09-13 14:15:22 +03:30
parent b820dd372a
commit 5715a89686
2 changed files with 24 additions and 0 deletions
+1
View File
@@ -26,6 +26,7 @@
Route::prefix('auth')->controller(UserController::class)->group(function () {
Route::post('forgot-password', 'requestPasswordReset'); // send reset link
Route::post('reset-password', 'resetPassword'); // actually reset
Route::post('reset-password-in-app', 'resetPasswordInApp');
});
Route::get('/reset-password/{token}', [UserController::class, 'showResetForm'])