@extends('admin.layout') @section('title', 'Settings') @section('content')
{{-- ── SHOP SERVICE STATUS CARD (DELIVERY / PICKUP / DINE-IN) ── --}}

Store Operating Status per Service

Control whether Delivery, Pickup, and Dine In services are independently OPEN or CLOSED.

{{-- Delivery Service --}}
🛵
Delivery
{{ $isOpenDelivery ? 'OPEN' : 'CLOSED' }}
{{-- Pickup Service --}}
📦
Pickup
{{ $isOpenPickup ? 'OPEN' : 'CLOSED' }}
{{-- Dine-In Service --}}
🪑
Dine In
{{ $isOpenDineIn ? 'OPEN' : 'CLOSED' }}
Toggling a service updates real-time for all active customers without requiring a page refresh.
{{-- Restaurant Information --}}

Restaurant Information

General details shown to customers

@csrf
{{-- Change Password --}}

Change Password

Update your admin account password

@csrf
@error('current_password')

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror
{{-- Admin Account --}}

Your Admin Account

@if(auth()->user()->avatar) Avatar @else
{{ strtoupper(substr(auth()->user()->name,0,1)) }}
@endif

{{ auth()->user()->name }}

{{ auth()->user()->email }}

Administrator
Provider {{ ucfirst(auth()->user()->provider ?? 'email') }}
Member Since {{ auth()->user()->created_at->format('M d, Y') }}
User ID #{{ auth()->user()->id }}
{{-- Danger Zone --}}

Danger Zone

Irreversible actions — proceed with caution

Clear Cache

Clear Laravel's compiled views and config cache

Back to Site

Return to the customer-facing restaurant page

Go to Site
@endsection @push('scripts') @endpush