@extends('layouts.app') @section('title', 'Edit Outlet - Tiqkets') @section('page-title', 'Edit Outlet') @section('content')
Edit Outlet Information
@csrf @method('PUT')
@error('outlet_name')
{{ $message }}
@enderror
@error('shop_number')
{{ $message }}
@enderror
@error('outlet_contact_name')
{{ $message }}
@enderror
@error('outlet_contact_phone')
{{ $message }}
@enderror
@error('outlet_contact_email')
{{ $message }}
@enderror
Cancel
Outlet Details
Status: {{ ucfirst($outlet->status) }}
Staff Members:

{{ $outlet->users_count }} staff

Created:

{{ $outlet->created_at->format('M d, Y') }}

Last Updated:

{{ $outlet->updated_at->format('M d, Y H:i') }}

Note

Updating outlet information will affect all staff members associated with this outlet.

@endsection