@extends('layouts.marketplace') @section('title', 'Profile') @section('mobile_header')

Profile

@include('pharmacy.partials.notifications_icon')
@endsection @section('mobile_content')
@if(session('status'))
{{ session('status') }}
@endif @if($errors->any())
Please fix the following:
@endif
Pharmacy logo
{{ $pharmacy->name }}
@if($pharmacy->isVerified())
Verified
@else
Not Verified
@endif
@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)
{{ $latestRequest->note }}
@endif
@else
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 ?: '—' }}
City {{ $pharmacy->city ?: '—' }}
Address {{ $pharmacy->address_line ?: '—' }}

Edit Profile

@csrf @method('PUT')
@endsection @section('desktop_content')
Pharmacy logo

{{ $pharmacy->name }}

@if($pharmacy->isVerified()) Verified @else Not Verified @endif
arrow_back Back
@if(session('status'))
{{ session('status') }}
@endif @if($errors->any())
Please fix the following:
@endif

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)
{{ $latestRequest->note }}
@endif
@else
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 }}

Edit Profile

@csrf @method('PUT')
@endsection