'Debug login in Laravel Nova - show always invalid credentials error

I have in the nova/auth/ directory the login view login.blade.php that has a post request to the nova.login route:

<form
    method="POST"
    action="{{ route('nova.login') }}"
>

The nova.login route has this action associated:

nova.login            | Laravel\Nova\Http\Controllers\LoginController@login

However this file is not in the folder structure. Already run php artisan vendor:publish but still doesn't appear.

However I don't have the nova LoginController in my project. Do you know how to access that file? I'm asking this because I'm having an invalid credentials error even entering the correct credentials. So I'm tryign to debug to understand what's the issue. Thanks



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source