Dashboard

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
Account Status
@if($provider->status == 'pending') Pending Approval @elseif($provider->status == 'active') Active @elseif($provider->status == 'rejected') Rejected @elseif($provider->status == 'blocked') Blocked @endif
@if($provider->status == 'pending')

Your account is currently under review. We will notify you once it's approved.

This usually takes 24-48 hours. Thank you for your patience.
@elseif($provider->status == 'active')

Your account is active. You can now start adding your services.

Add New Service @elseif($provider->status == 'rejected')

Your account registration was rejected for the following reason:

{{ $provider->status_message }}

Please contact support for more information.

@elseif($provider->status == 'blocked')

Your account has been blocked for the following reason:

{{ $provider->status_message }}

Please contact support for more information.

@endif
Profile Information
  • Name {{ $provider->name }}
  • Email {{ $provider->email }}
  • Phone {{ $provider->phone }}
  • Provider Type {{ ucfirst($provider->type) }}
Account Documents
    @if($provider->type == 'personal')
  • ID Card @if($provider->id_card) Uploaded @else Missing @endif
  • @else
  • Commercial Register @if($provider->commercial_register) Uploaded @else Missing @endif
  • @endif