@extends('frontend.layout.dashboard-master') @section('site_title', __('Identity Verification')) @section('style') @endsection @section('content') @php $authUser = Auth::guard('web')->user(); $isVerified = $authUser->user_verified_status == 1 && $authUser->user_type == 1; $verifyBy = $user_identity->verify_by ?? 'National ID Card'; @endphp @if($isVerified)

{{ __('Your identity is verified') }}

{{ __('Your identity has been verified by our team.') }}

@else
@if(isset($user_identity) && $user_identity->status == 2)

{{ __('Please resubmit your identity details with proper information so that we can verify it\'s you.') }}

@elseif(isset($user_identity))

{{ __('Notice: Please wait. we will notify by email whether you verified or not. Multiple request may delay your verification.') }}

@endif

{{ __('Identity Verification') }}

{{ __("Please choose to submit any of the government-issued documents listed below. User general info's are common for any documents submitted.") }}

{{-- Document Type Cards --}}
@csrf
{{-- Country --}}
@if(!moduleExists('CoinPaymentGateway'))
@endif {{-- Address --}}
@if(!moduleExists('CoinPaymentGateway'))
@endif {{-- National ID Number --}}
{{-- Front Side Upload --}}
{{-- Back Side Upload --}}
@endif @endsection @section('script') @endsection