@if (auth()->user()->kyc_verified == global_const()::PENDING)
Your KYC information is submited. Please wait for admin confirmation. When you are KYC verified you will show your submited information here.
@elseif (auth()->user()->kyc_verified == global_const()::APPROVED)
Your KYC information is verified
@elseif (auth()->user()->kyc_verified == global_const()::REJECTED)
{{ __("Your KYC information is rejected.") }}
{{ __("Verify KYC") }}
{{ auth()->user()->kyc->reject_reason ?? "" }}
@else
{{ __("Please verify KYC information") }}
{{ __("Verify KYC") }}
@endif