@extends('themes.basic.user.layout') @section('no_index', true) @section('title', d_trans('KYC Verification')) @section('header_title', d_trans('KYC Verification')) @section('breadcrumbs', Breadcrumbs::render('user.kyc', $user)) @section('hide_alerts', true) @section('content') @if ($user->hasKycVerified())
@include('themes.basic.partials.kyc-verified')
@elseif($user->hasKycPending())
@include('themes.basic.partials.kyc-pending')
@else
@csrf
{{ d_trans('ID Verification') }}

{{ d_trans('Upload a clear, legible image and Ensure that all relevant details, such as your name, photo, and ID number, are visible. the image must be type of .JPG or .PNG') }}

{{ d_trans('Front Of ID') }}
{{ d_trans('Back Of ID') }}
{{ d_trans('Passport') }}
@if (config('settings.kyc.actions.selfie_verification'))
{{ d_trans('Selfie Verification') }}

{{ d_trans("Upload a clear selfie and Ensure it's well-lit and visible. the image must be type of.JPG or .PNG") }}

@endif
@endif @endsection