{{-- resources/views/storefront/seller-application.blade.php --}} @extends('storefront.layout') @section('title', trans_key('storefront.pageTitles.sellerApplication').' - '.config('app.name', 'FreshMart')) @push('styles') @endpush @section('content')

🏪 Become a Seller

Grow with {{ config('app.name', 'FreshMart') }}. Create your seller profile, first store and payout details.

{{-- Flash Status --}} @if(session('status'))
✅ {{ session('status') }}
@endif {{-- Application Status --}} @if($application) @php $applicationStatus = $application->verification_status ?? $application->status ?? 'pending'; $applicationMeta = is_array($application->onboarding_meta) ? $application->onboarding_meta : []; $applicationStoreName = $application->store_name ?? $application->business_name; $applicationPhone = $application->phone ?? $application->business_phone ?? $application->contact_phone; $applicationType = data_get($applicationMeta, 'business_type', 'food'); $applicationAddress = trim(collect([ $application->address_line_1 ?? $application->address, $application->city, ])->filter()->join(', ')); @endphp

{{ $application->business_name }}

{{ str($applicationStatus)->headline() }} Applied {{ $application->created_at->diffForHumans() }}
Store name {{ $applicationStoreName }}
Business phone {{ $applicationPhone }}
Business type {{ str($applicationType)->headline() }}
Address {{ $applicationAddress ?: 'Submitted' }}
@if(in_array($applicationStatus, ['verified', 'approved'], true)) ✅ Your seller account is approved. Open the seller app to manage your store. @elseif($applicationStatus === 'rejected') ❌ Your application was not approved. Please contact support for more information. @else ⏳ Your application is with the admin review team. @endif
@else {{-- Application Form --}}
@csrf @if($errors->any())
Please fix the following errors:
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Business Details --}}

Business Details

{{-- Contact & Address --}}

Contact & Address

{{-- Payout Details --}}

Payout Details

{{-- Business Type & Service Area --}}

Business Type & Service Area

{{-- Verification Documents --}}

Verification Documents

{{-- Consent --}}
@endif
@endsection