@extends($activeTemplate . 'layouts.master') @section('content')
@if ($user->kv == Status::KYC_PENDING)
@lang('Thank You for Submitting Your KYC Information!')

@lang('We appreciate your cooperation in completing the KYC process. Your information has been successfully submitted and is now under review.')

@elseif($user->kv == Status::KYC_UNVERIFIED && $user->kyc_rejection_reason)
@lang('KYC Rejection Notice!')

{{ $user->kyc_rejection_reason }}

{{ __(@$kyc->data_values->reject) }} @lang('Click Here to Re-submit KYC Your Information').

@endif
@lang('KYC Information')
@if ($user->kv == Status::VERIFIED) @lang('Approved') @endif
@if ($user->kyc_data)
    @foreach ($user->kyc_data as $val) @continue(!$val->value)
  • {{ __($val->name) }} @if ($val->type == 'checkbox') {{ implode(',', $val->value) }} @elseif($val->type == 'file') @lang('View File') @else

    {{ __($val->value) }}

    @endif
  • @endforeach
@else
@lang('KYC data not found')
@endif
@endsection