You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found the solution as of version 5.4 you should add to LoginController the following:
.....
use Illuminate\Foundation\Validation\ValidatesRequests;
class LoginController extends Controller
{
use ValidatesRequests;
use AuthenticatesUsers;
// here also.......
}
there is no default validation in LoginController
The text was updated successfully, but these errors were encountered: