@extends('layouts.app') @section('title', 'Create Booking') @section('content')
Create Booking
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('start_date')) {{ $errors->first('start_date') }} @endif
@if ($errors->has('end_date')) {{ $errors->first('end_date') }} @endif

Car Information

Car Image
Hourly Price {{$car->hourly_price}} RM
M.G.F Year {{$car->year}}
Model {{$car->model}}
Color

Automatic Calculation

Estimated Hours : 0 hours

Estimated Price : 0 RM

@endsection @section('scripts') @endsection