@extends('layouts.app') @section('content') @include('layouts.sidebar')
Add Booking
@csrf

Customer Name

@if ($errors->has('customer_id')) {{ $errors->first('customer_id') }} @endif

From Address

@if ($errors->has('from_address')) {{ $errors->first('from_address') }} @endif

To Address

@if ($errors->has('to_address')) {{ $errors->first('to_address') }} @endif

Total Amount

@if ($errors->has('total_amount')) {{ $errors->first('total_amount') }} @endif

Paid Amount

@if ($errors->has('paid_amount')) {{ $errors->first('paid_amount') }} @endif

Balance Amount

@if ($errors->has('balance_amount')) {{ $errors->first('balance_amount') }} @endif

Booking Date

@if ($errors->has('booking_date')) {{ $errors->first('booking_date') }} @endif
@endsection @push('custom-scripts') @endpush