@extends('layouts.app') @section('title', 'KYC Status') @section('content')
← Back to KYC

🆔 KYC Verification Status

@if($user->kyc_status === 'verified')

Verification Complete!

Your identity has been successfully verified. You now have access to all platform features.

Status: Verified
Verified On: {{ $user->updated_at->format('M d, Y H:i') }}
Name: {{ $user->first_name }} {{ $user->last_name }}

✨ Benefits Unlocked

✅ Withdraw funds to your bank account
✅ Higher challenge limits
✅ Priority customer support
✅ Enhanced account security
@elseif($user->kyc_status === 'pending')

Verification in Progress

Your documents are being reviewed by our verification team. This process usually takes 24-48 hours.

Status: Under Review
Submitted: {{ $user->updated_at->format('M d, Y H:i') }}
Expected Completion: {{ $user->updated_at->addHours(48)->format('M d, Y H:i') }}

Documents Submitted

{{ $user->updated_at->format('M d, Y H:i') }}

Under Review

Our team is verifying your documents

Verification Complete

You'll be notified when complete

🏠 Dashboard
@elseif($user->kyc_status === 'rejected')

Verification Rejected

Unfortunately, your verification was not successful. Please review the reasons below and submit new documents.

Status: Rejected
Rejected On: {{ $user->updated_at->format('M d, Y H:i') }}

📋 Common Rejection Reasons

  • Blurry or unclear document images
  • Document information doesn't match provided details
  • Expired or invalid identification documents
  • Selfie doesn't match ID document photo
  • Incomplete or missing information
@else
📄

Verification Not Started

Complete your KYC verification to unlock all platform features and secure your account.

@endif
@if($user->kyc_status !== 'verified')

❓ Need Help?

📞

Contact Support

Get help from our verification team

Contact Us

FAQ

Find answers to common questions

View FAQ
📚

Requirements

Learn what documents you need

View Requirements
@endif
@endsection