@extends('layouts.seller') @section('title', 'Company Profile') @section('content')
Company Details
@csrf
@php $minMoq = \App\Models\Setting::getValue('registration_moq_min', 10); $maxMoq = \App\Models\Setting::getValue('registration_moq_max', 150); @endphp
Units
@error('moq_quantity')
{{ $message }}
@enderror Allowed range: {{ $minMoq }} - {{ $maxMoq }} units (Set by Admin)
Recommended size: 500x500px. Max: 2MB
@if($seller->logo) @else
{{ substr($seller->company_name, 0, 1) }}
@endif

{{ $seller->company_name }}

{{ $seller->category->name ?? 'Uncategorized' }}

@if($seller->subscription && $seller->subscription->plan)
@if(Str::contains(strtolower($seller->subscription->plan->name), 'silver')) Silver Member @elseif(Str::contains(strtolower($seller->subscription->plan->name), 'basic')) Basic Member @else Premium Member @endif
@else Free Member @endif

{{ $seller->products->count() }}

Products

{{ $seller->inquiries->count() }}

Inquiries
Platform MOQ: 10 - 150 Units
Product MOQ:
@if($seller->moq_quantity) {{ $seller->moq_quantity }} (Custom) @else Not Set @endif
KYC Status
Document Status @if($seller->kyc_status === 'verified') Verified @elseif($seller->kyc_status === 'submitted') KYC Submitted @else Pending @endif
KYC Verified status is awarded after document approval.
Danger Zone
@if($seller->delete_requested_at)
Account Scheduled for Deletion

Your account is scheduled for permanent deletion. @php $months = \App\Models\Setting::getValue('seller_retention_period', 3); $deletionDate = \Carbon\Carbon::parse($seller->delete_requested_at)->addMonths((int)$months)->format('d M Y'); @endphp It will be deleted on {{ $deletionDate }}.

@csrf
@else

Deleting your account will hide your profile and products from buyers. You can restore your account within 3 months. After 3 months, your data will be permanently deleted.

@csrf
@endif
@endsection @push('scripts') @endpush