@extends('admin.layouts.dashboard') @section('title', 'Add Admin Booking') @push('head') @include('admin.job-details._booking-form-styles') @endpush @section('content')

Add Admin Booking

Schedule a new job booking for a customer

Back
@if($errors->any())
Please fix the following:
@endif
@csrf
{{-- Left column --}}
{{-- Customer --}}
Customer Information

Select an existing customer or add a new one

has('customer_id')) style="display:none;"@endif>{{ $errors->first('customer_id') }}
{{-- Hidden customer fields --}}
{{-- Job details --}}
Job Details

Items, services and work description

has('product_ids')) style="display:none;"@endif>{{ $errors->first('product_ids') }}
Select one or more items from the list
@error('job_detail')
{{ $message }}
@enderror
{{-- Right column --}}
Schedule

Pick date and available time slot

has('job_date')) style="display:none;"@endif>{{ $errors->first('job_date') }}
has('job_time')) style="display:none;"@endif>{{ $errors->first('job_time') }}
Additional Notes

Optional internal remarks

Cancel
@include('admin.job-details._add-customer-modal') {{-- Add Product / Service Modal --}}
Add New Item / Service
@push('scripts') @include('admin.customers._customer-validation') @include('admin.job-details._booking-form-validation') @include('admin.customers._customer-modal-address-autocomplete') @endpush @endsection