@extends('dashboard.user.layouts.app') @section('content')

{{ $title }}

@if ($user->kycIsRejected())

Account Verification Required

We could not approve your previous verification attempt. To comply with financial regulations and to ensure the security of your account, please provide accurate personal information and upload the required documents again. This will allow us to verify your identity and restore full access to your account.

@include('dashboard.user.partials.kyc_form') @elseif($user->kycIsPendingAndHasDocument()) @elseif($user->kycIsApproved()) @else

Account Information

To comply with regulations, please provide your information to complete the verification process.

@include('dashboard.user.partials.kyc_form') @endif
@endsection