@extends('layouts.admin') @section('title', 'Create Shop') @section('content')

Create New Shop

Add a new shop to the platform

Back to List
Basic Shop Information
@csrf
@error('name')
{{ $message }}
@enderror
@error('category_id')
{{ $message }}
@enderror
@error('user_id')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
@error('website')
{{ $message }}
@enderror
@error('address')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror

Operating Information
@php $days = ['monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday', 'sunday']; $oldDays = old('operating_days', []); @endphp @foreach($days as $day)
@endforeach

Shop Details

Shop Manager Information (Optional)

Accepted Payment Methods
@php $paymentMethods = ['cash', 'card', 'mobile_money', 'bank_transfer', 'online']; $oldPayments = old('payment_methods', []); @endphp @foreach($paymentMethods as $method)
@endforeach
Cancel
Shop Guidelines
Getting Started

After creating your shop, you can:

  • Add products to your inventory
  • Set up services and appointments
  • Manage customer bookings
  • Track sales and analytics
Important Notes
  • Choose the correct business model (Product/Service/Hybrid)
  • Set accurate operating hours for customer convenience
  • Provide complete contact information
  • Select appropriate payment methods
Pro Tips
  • Enable online ordering to increase sales
  • Set up a loyalty program to retain customers
  • Keep your shop information updated
  • Use detailed descriptions and specializations
@endsection @section('scripts') @endsection