@php $application = $application ?? null; $payment_code = $payment_code ?? null; $countries = $countries ?? \App\Models\Country::all(); @endphp
@csrf
@csrf @if($showBillForm && $applicant)

Customer Name : {{ $applicant->FullName }}
Customer Email : {{ $applicant->email }}
Customer Phone : {{ $applicant->phone }}
Billing Address : {{ $applicant->address }}

@endif @if($authUser->can('generate_bills_for_staff'))
@if(isset($offices) && !empty($offices))
@if(old('staff_office_id')) @error('staff_office_id') {{ $message }} @enderror @endif
@else @endif @error('staff_id') {{ $message }} @enderror
@endif
@section('more-scripts') @stop