Bank Account Verification

Review bank account details for {{ $profile->user->name }}

{{ $profile->bank_account_status }}

Golfer Information

@if($profile->user->getFirstMediaUrl('avatar')) {{ $profile->user->name }} @else
{{ substr($profile->user->name, 0, 1) }}
@endif

{{ $profile->user->name }}

{{ $profile->user->email }}

Profile: {{ ucfirst($profile->profile_status) }} Joined: {{ $profile->user->created_at->format('M d, Y') }}

Bank Account Details

{{ $profile->bank_name }}

{{ $profile->account_holder_name }}

{{ $profile->account_number }}

{{ $profile->routing_number }}

{{ $profile->account_type ?? 'Not specified' }}

@if($profile->swift_code)

{{ $profile->swift_code }}

@endif
@if($profile->bank_address)

{{ $profile->bank_address }}

@endif @if($profile->bank_verified && $profile->bank_verified_at)
Verified on {{ $profile->bank_verified_at->format('F d, Y \a\t g:i A') }}
@elseif($profile->bank_verification_status === 'rejected')
Rejected on {{ $profile->bank_rejected_at?->format('F d, Y \a\t g:i A') }}

Reason: {{ $profile->bank_rejection_reason }}

@if($profile->bankRejectedBy)

Rejected by: {{ $profile->bankRejectedBy->name }}

@endif

The golfer must update their bank details before admin can re-verify.

@endif

Security Information

Bank account and routing numbers are encrypted in the database. Only the last 4 digits are displayed for security. Your access to this information has been logged.

Access History

@if($accessLogs->count() > 0)
@foreach($accessLogs as $log)
@if($log->action === 'verified')
@elseif($log->action === 'rejected' || $log->action === 'revoked')
@elseif($log->action === 'updated')
@else
@endif

{{ $log->action_label }}

By {{ $log->accessedBy->name ?? 'Unknown' }} • {{ $log->created_at->diffForHumans() }}

@if($log->reason)

"{{ $log->reason }}"

@endif
@endforeach
@else

No access history available.

@endif

Actions

@if($profile->bank_verified) {{-- Verified - Show revoke option --}}
Verified Account

This golfer can request withdrawals.

@csrf

The golfer will be notified and won't be able to request withdrawals.

@elseif($profile->bank_verification_status === 'rejected')
Rejected

This bank account was rejected. The golfer must update their bank details before you can verify again.

Previous Rejection Reason:

"{{ $profile->bank_rejection_reason }}"

@else
@csrf
@csrf

The golfer will receive this reason.

@endif
{{--

Verification Checklist

This checklist is for your reference only and is not saved.

--}}

Quick Links