@extends($activeTemplate.'layouts.master') @section('content')

@lang('KYC Data')

@lang('Your submitted KYC information is shown below. You couldn\'t change the data that you\'ve submitted. If the admin rejects your information, you\'ll be able to re-submit.')

@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('Attachment') @else

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

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