@extends('layouts.vendor') @section('page-title', 'Edit Profile') @section('content')
@if(session('success'))
{{ session('success') }}
@endif

Vendor Profile

Manage your store information

Back to Dashboard
@csrf @method('PATCH') {{-- Store Info Card --}}

Store Information

@error('name')

{{ $message }}

@enderror
@if($vendor->logo) Logo @endif
@if($vendor->banner) Banner @endif
{{-- Contact Info Card --}}

Contact Information

@error('email')

{{ $message }}

@enderror
{{-- Status Card --}}

Account Status

{{ ucfirst($vendor->status) }}

@if($vendor->status === 'pending') Your store is pending admin approval. @elseif($vendor->status === 'approved') Your store is active and can sell products. @else Your store has been rejected. Please contact admin. @endif

Cancel
@endsection