Fixes and implementation of forgot password

This commit is contained in:
frederikpyt
2020-06-30 10:19:01 +02:00
parent 2814490a8a
commit c074f32bbe
12 changed files with 115 additions and 134 deletions
+2 -1
View File
@@ -23,7 +23,8 @@ Route::get("/", "RootController@index")->name("root.index");
Route::get("/login", "UserController@showLogin")->name("users.show-login");
Route::post("/login", "UserController@login")->name("users.login");
Route::get("/logout", "UserController@logout")->name("users.logout");
Route::get("/forgot", "UserController@showForgot")->name("users.show-forgot");
Route::post("/forgot", "UserController@forgot")->name("users.forgot");
Route::get("phones", "PhoneController@index")->name("phones.index");