{{ $user->surname }} {{ $user->name }}

{{ $user->type }}

@push('styles') @endpush
@if ($user->type === 'personal')
01

Personal Details

Basic personal information for identification purposes.

02

Document

To verify identity.

  • documentType === 'passport') checked @endif>
  • documentType === 'nidcard') checked @endif>
@endif @if ($user->type === 'business')
01

Business Details

Basic business information for identification purposes.

@if (! empty($kyc->companyShareholders)) @foreach(json_decode($kyc->companyShareholders, true) as $key => $cs)
@endforeach @endif
02

Document

To verify identity.

@endif
03

Business industry

MCC code

@if($user->binanceType == 'user-id')
binanceType == 'user-id') checked @endif class="form-check-input" type="radio" name="binanceType" id="binance1">
@endif @if($user->binanceType == 'pay-id')
binanceType == 'pay-id') checked @endif class="form-check-input" type="radio" name="binanceType" id="binance2">
@endif @if($user->binanceType == 'user-email-address')
binanceType == 'user-email-address') checked @endif class="form-check-input" name="binanceType" type="radio" id="binance3">
@endif

Current status: {{ $user->kyc->status }}


@if (! $user->kyc_verified_at)

Set status:

@foreach(\App\Models\KYC::KYC_STATUS as $status) @if ($status != $user->kyc->status) @if ($status === 'approved') @else @endif @endif @endforeach @endif