@extends('layouts.admin') @php $currencySymbol = App\Models\AppSetting::getValue('currency_symbol', '?'); @endphp @section('title', 'Edit Store') @section('header', 'Edit Store') @section('styles') @endsection @section('content')
Store Information
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
@error('fssai_license_number')
{{ $message }}
@enderror
@error('service_type')
{{ $message }}
@enderror
@error('store_type')
{{ $message }}
@enderror
@error('commission_calculation_type')
{{ $message }}
@enderror
@error('commission_rate')
{{ $message }}
@enderror
@error('delivery_time')
{{ $message }}
@enderror
@error('order_lead_time')
{{ $message }}
@enderror
@error('open_time')
{{ $message }}
@enderror
@error('close_time')
{{ $message }}
@enderror
@error('timezone')
{{ $message }}
@enderror
Delivery radius: {{ old('delivery_radius', $restaurant->delivery_radius ?? 10) }} km. Drag the marker or click the map to move service area.
Auto Delivery Zone
Use current location or search to detect zone
Zone preview is calculated from the selected store location.
Use the map, geolocation or address search to set location and radius.
@error('address')
{{ $message }}
@enderror @error('latitude')
{{ $message }}
@enderror @error('longitude')
{{ $message }}
@enderror
@error('city')
{{ $message }}
@enderror
@error('state')
{{ $message }}
@enderror
@error('pincode')
{{ $message }}
@enderror
@error('restaurant_type')
{{ $message }}
@enderror
@error('dining_charge')
{{ $message }}
@enderror
@error('delivery_radius')
{{ $message }}
@enderror
is_pure_veg) ? 'checked' : '' }}>
Egg and non-veg items are blocked for pure veg stores.
Hold Ctrl (Windows) or Command (Mac) to select multiple.
@if($restaurant->logo_image)
Logo
@endif
@if($restaurant->banner_image)
Banner
@endif
@include('admin.partials.payout-account-fields', ['values' => [ 'account_holder_name' => old('account_holder_name', $restaurant->owner->account_holder_name ?? ''), 'bank_name' => old('bank_name', $restaurant->owner->bank_name ?? ''), 'account_number' => old('account_number', $restaurant->owner->account_number ?? ''), 'ifsc_code' => old('ifsc_code', $restaurant->owner->ifsc_code ?? ''), 'upi_id' => old('upi_id', $restaurant->owner->upi_id ?? ''), 'stripe_account_id' => old('stripe_account_id', $restaurant->owner->stripe_account_id ?? $restaurant->owner->gateway_account_id ?? ''), 'gateway_account_id' => old('gateway_account_id', $restaurant->owner->gateway_account_id ?? $restaurant->owner->stripe_account_id ?? ''), ]])
is_open) ? 'checked' : '' }}>
is_verified) ? 'checked' : '' }}>
is_featured) ? 'checked' : '' }}>
Cancel
@endsection @section('scripts') @include('partials.google-maps-shim') @endsection