{{-- Header --}}
Welcome back
Sign in to continue to your dashboard
{{-- Session Status --}}
{{-- ✅ Detailed auth error banner (suspended, invalid google, etc.) --}} @if ($errors->has('auth'))
{{ $errors->first('auth') }}
@endif {{-- ✅ Global errors (por ejemplo: credenciales incorrectas viene en email) --}} @if ($errors->any() && !$errors->has('auth'))
Please check the form:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Google login --}} Continue with Google
or
@csrf {{-- Email --}}
{{-- Password --}}
@if (Route::has('password.request')) {{ __('Forgot?') }} @endif
{{-- Remember --}}
{{-- Submit --}}
{{ __('Log in') }} @if (Route::has('register'))
Don’t have an account? Create one
@endif
By continuing, you agree to the terms of service.