@extends(template().'layouts.user') @section('title',trans('KYC Verification Center')) @section('content')

@lang("KYC Verification")

@lang("KYC Verification")

@if(count($kycVerification) > 0)
@forelse($kycVerification as $item) @empty @endforelse
@lang("Sl") @lang("Kyc Type") @lang("Status") @lang("Action")
{{ $loop->index + 1 }} @lang($item->name) @if($item->last_submission_status == 'null') @lang("Required") @elseif($item->last_submission_status == 0) @lang("Pending") @elseif($item->last_submission_status == 1) @lang("Approved") @elseif($item->last_submission_status == 2) @lang("Required") @endif
@else
Image Description

@lang("The KYC is not available.")

@endif
@endsection