supplement to the latest commit. I removed the info flash from the /login route when you are already authed because this looked like shit

This commit is contained in:
noxy
2019-11-11 09:58:32 +00:00
parent af06b58813
commit 6401c95d69
2 changed files with 1 additions and 3 deletions

View File

@@ -127,7 +127,7 @@ class UserController extends Controller
{
if(auth()->check()) {
\Session::reflash();
\Session::flash('info', 'Cannot login when logged in, lmao');
#\Session::flash('info', 'Cannot login when logged in, lmao');
return redirect('/');
}
return view('login');