Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

kiklop74's avatar

How to customize nova login

I would like to disable nova login and just use default laravel jetstream page for that. How can that be done?

0 likes
1 reply
Maria30's avatar

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

Please or to participate in this conversation.