{{ $pharmacy->name }}
@if($pharmacy->isVerified())
Verified
@else
Not Verified
@endif
{{ session('status') }}
@endif
@if($errors->any())
Please fix the following:
-
@foreach($errors->all() as $error)
- {{ $error }} @endforeach
Pharmacy Info
@if($pharmacy->isVerified())
Verified. You can use the platform.
@else
@if($latestRequest && $latestRequest->status === 'pending')
Verification pending with: {{ $latestRequest->verifierPharmacy?->name }} ({{ $latestRequest->license_number_entered }})
@elseif($latestRequest && $latestRequest->status === 'rejected')
Verification rejected.
@if($latestRequest->note)
@else
{{ $latestRequest->note }}
@endif
Not verified. Enter a sponsor license and submit for pharmacy verification.
@endif
@endif
License
{{ $pharmacy->license_number }}
Sponsor License
{{ $pharmacy->sponsor_license_number ?: '—' }}
Phone
{{ $pharmacy->contact_phone ?: '—' }}
WhatsApp
{{ $pharmacy->whatsapp_number ?: '—' }}
Email
{{ $pharmacy->contact_email ?: '—' }}
Owner
{{ $pharmacy->createdBy?->name ?? auth()->user()->name }}