@extends('layouts.admin') @section('title', 'Edit Business - ' . $shop->store_name) @section('content')

Edit Business

Back to Businesses
@csrf @method('PUT')
Basic Information
franchise_store) ? 'checked' : '' }}>
BizSpot Categories
@if($shop->bizspotSubCategory)
Current Category Path: {{ $shop->bizspotSubCategory->getFullPath() }}
@endif
Location Information
Contact Information
@
Business Images
@if($shop->logo_image)
Current Logo
@endif
Max size: 2MB. Formats: JPEG, PNG, JPG
Max size: 5MB each. Multiple images allowed
@if($shop->store_images && is_array($shop->store_images) && count($shop->store_images) > 0)
@foreach($shop->store_images as $index => $image)
Store Image {{ $index + 1 }}
@endforeach
@endif
Business Features
Store Features
storefront_signage) ? 'checked' : '' }}>
window_display) ? 'checked' : '' }}>
fitting_rooms) ? 'checked' : '' }}>
customer_seating) ? 'checked' : '' }}>
Services
takeaway_service) ? 'checked' : '' }}>
delivery_service) ? 'checked' : '' }}>
wheelchair_accessible) ? 'checked' : '' }}>
family_friendly) ? 'checked' : '' }}>
Payment Methods
@php $paymentMethods = old('payment_methods', $shop->payment_methods ?? []); @endphp
Business Documents & Licenses
Upload licenses, permits, etc. Max 10MB each
@if($shop->business_documents && count($shop->business_documents) > 0)
@foreach($shop->business_documents as $index => $document)
Document {{ $index + 1 }} Download
@endforeach
@endif
Business Status

@php $statusColors = [ 'pending' => 'warning', 'approved' => 'success', 'rejected' => 'danger', 'suspended' => 'secondary' ]; $statusColor = $statusColors[$shop->registration_status] ?? 'secondary'; @endphp {{ ucfirst($shop->registration_status) }}
@if($shop->store_number)

{{ $shop->store_number }}

@endif @if($shop->application_date)

{{ $shop->application_date->format('M d, Y') }}

@endif @if($shop->approved_at)

{{ $shop->approved_at->format('M d, Y') }}

@endif
Actions
Cancel
@endsection @section('scripts') @endsection