@if ($step === 'request') OTP Sign In @else Verify OTP @endif

@if ($step === 'request') Enter your mobile number to receive an OTP @else Enter the OTP sent to your mobile @endif

@if ($errors->any()) @endif @if ($step === 'request')
@error('mobile') {{ $message }} @enderror We'll send an OTP to verify your identity

Have an account? Sign in with email

@endif @if ($step === 'verify')
@error('otp') {{ $message }} @enderror Enter the 6-digit code sent to your mobile
@if (strlen($otp) > 0)
@for ($i = 0; $i < 6; $i++)
{{ isset($otp[$i]) ? $otp[$i] : '' }}
@endfor
@endif
@if ($canResend)

Didn't receive the OTP?

@else

Resend OTP in {{ $resendCountdown }}s

@endif
@endif