Level 20
In your nova directory find src/Http/Controllers/LoginController.php
You will find this
public function showLoginForm()
{
return view('nova::auth.login');
}
comment the return view('nova::auth.login');
and add this
return redirect('/login');
Like so
public function showLoginForm()
{
//return view('nova::auth.login');
return redirect('/login');
}
Notice: To have access to your dashboard you will have to set your email in the app/Providers/NovaServiceProvider.php