{{ __('Profile') }}

@if(auth()->user()->merchantProfile)

Merchant Application

Status of your seller application.

{{ auth()->user()->merchantProfile->business_name }}
@if(auth()->user()->merchantProfile->status->value === 'pending')

Your application is being reviewed by our team.

@elseif(auth()->user()->merchantProfile->status->value === 'approved')

Approved on {{ auth()->user()->merchantProfile->approved_at?->format('M d, Y') }}.

@elseif(auth()->user()->merchantProfile->status->value === 'rejected')

Reason: {{ auth()->user()->merchantProfile->rejection_reason }}

@endif
@endif
@include('profile.partials.update-profile-information-form')
@include('profile.partials.update-password-form')
@include('profile.partials.delete-user-form')