@extends('layouts.master') @section('title') @lang('translation.account-verification') @endsection @section('content') @component('components.breadcrumb') @slot('title') Account Verification @endslot @endcomponent
@if ($status === 'unapproved' || $status === 'Rejected')

Account Verification Pending

Our team will verify your account details and you will receive a confirmation email from us.

@else

Verify Your Email

We’ve sent a 6-digit verification code to your email address{{ $user->email ?? '' }}
Please enter the code and click continue to verify your email address

@for ($i = 1; $i <= 6; $i++)
Please enter a valid digit
@endfor

Didn't receive a code? Resend Code

Phone Verification

We’ve sent a 6-digit verification code to your phone {{ $user->phone_number ?? '' }}
Please enter the code and click continue to verify your phone number

@for ($i = 1; $i <= 6; $i++)
Please enter a valid digit
@endfor

Didn't receive a code? Resend Code

Personal Information

This field is required
This field is required
Please upload the front side of your ID
Please upload the back side of your ID
This field is required

Account Verification Pending

Our team will verify your account details and you will receive a confirmation email from us.

@endif
@endsection