@extends('layouts.app') @section('title', __('dashboard.Add Reservation')) @section('page_heading', __('dashboard.Add Reservation')) @php $reservationBackRoute = auth()->user()?->hasSalesFocusModeEnabled() ? route('dashboard.sales-focus.index') : route('dashboard.reservations.index'); @endphp @section('breadcrumb')
  • {{ __('dashboard.Home') }}
  • {{ __('dashboard.Reservations') }}
  • {{ __('dashboard.Add Reservation') }}
  • @endsection @section('content') @include('layouts.partials.workspace-page-styles') @include('dashboard.reservations.partials.customer-lookup-styles')
    @csrf
    إلغاء

    {{ __('dashboard.Product') }}

    @include('dashboard.reservations.partials.product-search', ['selectedProduct' => $selectedProduct ?? null])

    {{ __('dashboard.Reservation Details') }}

    @error('event_date')
    {{ $message }}
    @enderror
    @error('fitting_date')
    {{ $message }}
    @enderror
    @error('customer_pickup_date')
    {{ $message }}
    @enderror
    @error('customer_return_date')
    {{ $message }}
    @enderror

    {{ __('dashboard.Reservation Options') }}

    {{ __('dashboard.Notes') }}

    {{ __('dashboard.Customer') }}

    @include('dashboard.reservations.partials.customer-search', ['selectedCustomer' => $selectedCustomer ?? null])
    @include('dashboard.reservations.partials.price-summary', [ 'taxes' => $taxes ?? [], 'additionalExpenses' => $additionalExpenses ?? [], 'selectedProduct' => $selectedProduct ?? null ]) @can('change reservation creator')

    {{ __('dashboard.Creator') }}

    @endcan
    @endsection @push('modals') @endpush @section('scripts') @endsection