{{-- resources/views/restaurant/settings/index.blade.php --}} @extends('layouts.restaurant') @section('title', 'Store Settings') @section('styles') @endsection @section('content')
Seller workspace

Store Settings

Keep your identity, contact information and service location accurate.

{{ $restaurant->is_open ? 'Open now' : 'Currently closed' }} Hours & operations
@if(session('success')) @endif
Store Profile
Customer-facing identity and contact details
@if($restaurant->exists) {{ $restaurant->is_verified ? 'Verified' : 'Pending Verification' }} @endif
@csrf
@error('name')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('pincode')
{{ $message }}
@enderror
@error('city')
{{ $message }}
@enderror
@error('state')
{{ $message }}
@enderror
Click the map or drag the pin to reposition your store address.
Allow location or search manually to populate your address and location coordinates.
@error('address')
{{ $message }}
@enderror @error('latitude')
{{ $message }}
@enderror @error('longitude')
{{ $message }}
@enderror

Store Snapshot
At-a-glance account health
Status {{ $restaurant->is_open ? 'Open' : 'Closed' }}
@if($restaurant->exists)
Member Since {{ $restaurant->created_at->format('F d, Y') }}
Slug {{ $restaurant->slug }}
@endif
Rating
{{ number_format($restaurant->rating ?? 0, 1) }}
@for($i = 1; $i <= 5; $i++) @if(($restaurant->rating ?? 0) >= $i) @elseif(($restaurant->rating ?? 0) >= $i - 0.5) @else @endif @endfor
@endsection @section('scripts') @include('partials.google-maps-shim') @endsection