forget password, reset password

This commit is contained in:
2023-11-23 09:38:59 +07:00
parent 6d72b1b789
commit 49afc1d28d
2 changed files with 48 additions and 0 deletions

View File

@@ -40,6 +40,8 @@ Route::prefix('linksehat')->group(function () {
Route::post('logout', 'logout');
Route::post('login-phone', 'loginPhone');
Route::post('register', 'register');
Route::post('forget-password', 'forgetPassword');
Route::post('reset-password', 'resetPassword');
Route::get('social-login/{provider}', 'redirectSocialLogin');
Route::get('social-login/{provider}/callback', 'handleSocialLoginCallback');
});