@include('layouts.style')
@include('layouts.nav')
OTP Verification
@if(Session::has( 'success' ))
{{ Session::get( 'success' ) }}
@elseif( Session::has( 'warning' ))
{{ Session::get( 'warning' ) }}
@endif
@csrf
An OTP has been sent to your registered Email ID. Please Enter it
In case you haven't received the OTP in your mailbox, please check your spam folder
OTP
{{ $errors->has('otp') ? $errors->first('otp') : '' }}
Verify
@if(auth()->user() && auth()->user()->status=="2")
Resend OTP
@else
Resend OTP
@endif
@include('layouts.footer') @include('layouts.script')