Loading routes/web.php +4 −0 Original line number Diff line number Diff line Loading @@ -28,6 +28,10 @@ ]); $user = User::where('US_EMAIL', $request->mail)->first(); if($user == null) { return view('login', ['wrongPassword' => true]); } if($user->checkPassword($request->password)) { return redirect('/'); // TODO: Redirect to the user's hub page Loading Loading
routes/web.php +4 −0 Original line number Diff line number Diff line Loading @@ -28,6 +28,10 @@ ]); $user = User::where('US_EMAIL', $request->mail)->first(); if($user == null) { return view('login', ['wrongPassword' => true]); } if($user->checkPassword($request->password)) { return redirect('/'); // TODO: Redirect to the user's hub page Loading