@php $resetLinkSent = (bool) session('password_reset_sent'); $resetEmail = old('email', session('password_reset_email')); // Mismo valor que Password::sendResetLink (DatabaseTokenRepository::throttle): segundos. $resetThrottleSeconds = (int) config('auth.passwords.'.config('auth.defaults.passwords').'.throttle'); $resetThrottleUntil = session('password_reset_throttle_until'); @endphp

{{ $resetLinkSent ? 'Revisa tu correo electrónico' : '¿Olvidaste tu contraseña?' }}

{{-- Ini Contenido --}} @if (!$resetLinkSent) @endif @if ($resetLinkSent)

Listo

Si el correo ingresado corresponde a una cuenta registrada, enviaremos un enlace para restablecer tu contraseña.

@endif @if ($resetLinkSent)

Puedes corregir el correo si hubo un error y solicitar un nuevo enlace cuando el botón esté disponible.

@endif
@csrf
@if ($resetLinkSent) @endif
@if ($resetLinkSent) @endif {{-- Fin Contenido --}}