@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')
@if ($val->value)
@lang('Attachment')
@else
@lang('No File')
@endif
@else
{{ __($val->value) }}
@endif
@endforeach
@else
@lang('KYC data not found')
@endif
@if ($user->kv == Status::KYC_UNVERIFIED)
@lang('Rejection Reason')
{{ $user->kyc_rejection_reason }}
@endif
@if ($user->kv == Status::KYC_PENDING)
@endif