@extends('layouts.auth') @section('title', 'Login Otp Verify') @section('content')

{{ __('login') }}

{{ __('we_have_sent_otp_on_your_email') }}
{{ Auth::guard('coordinator')->user()->email }}

@csrf
@for ($i = 1; $i <= 6; $i++) @endfor
@if (session('danger')) {{ session('danger') }} @endif @if (session('success')) {{ session('success') }} @endif @if ($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif
@if (session('otp_expires_at')) {{--

{{ __('otp_expire_in') }}

--}} @endif

{{ __('otp_expired_please_resend_otp') }}

{{ __('back_to_login') }}
@endsection @section('js') @endsection