@extends('layouts.user.base') @section('content') @php $user = auth()->user(); $requires_kyc2 = false; $requires_kyc2 = $user->requires_kyc2_upload(); @endphp
@include('user.settings.layouts.sidebard')
@if(!$user->active_kyc)
@csrf
To complete your KYC1 you will be required to provide the one or more of the following documents:
@if($user->isCompany()) Company Registration Document
Proof of Address
@else Government employee ID
International Passport
Driver's License
@endif
@if($requires_kyc2)
@endif @endif @if($requires_kyc2)
@csrf
To complete your KYC2 you will be required to snap a selfie of yourself holding the kyc docket you just uploaded or holding any valid ID as listed below:
@endif
@endsection