@csrf
Login
Email
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
Password
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
Submit
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif