@if ($user->kyc_data)
@if (!$user->kv)
@lang('You have submitted the below information to be verified. Please wait for admin approval.')
@endif
@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