@if($venue->status === 'rejected' && $venue->rejection_checklist)
Venue Rejected

Your venue was rejected by the admin. Please review the rejection reasons below and update your venue information.

@if($venue->rejection_reason)
Admin's Note:

{{ $venue->rejection_reason }}

@endif
Please address the following issues:
@foreach($venue->rejection_checklist as $key => $item)
@if($item['checked'])

{{ $item['label'] }}

@else

{{ $item['label'] }}

@endif
@endforeach
Update Venue & Resubmit Rejection Attempt: {{ $venue->verification_attempts ?? 1 }} / 3
@endif