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
@@ -202,4 +202,18 @@ class UserController extends Controller
return redirect()->route("root.index");
}
/*******************************************/
/* Forgot password */
/*******************************************/
public function showForgot(){
return Response::detect('users.forgot');
}
public function forgot(){
}
}