{{-- SUCCESS & ERROR ALERTS --}} @if (session('status'))
{{ session('status') }}
@endif @if ($errors->has('otp'))
{{ $errors->first('otp') }}
@endif {{-- SECTION 2: VERIFY OTP (Shows when session step is 'otp') --}} @if (session('step') === 'otp')

Enter OTP Code

We've sent a 6-digit verification code to
{{ session('email', old('email')) }}

@csrf
Didn't receive the code?
@csrf
{{-- SECTION 1: FORGOT PASSWORD (Default view) --}} @else

Forgot Password?

No worries! Enter your email and we'll send you a link to reset your password.

@csrf
@error('email')
{{ $message }}
@enderror
@endif ← Back to Login
@if (session('step') === 'otp') @endif