@extends('layouts.admin') @section('content') Calculator Home Calculator @if (Session::has('error')) × Error! {{ Session::get('error') }} @endif Price Calculator @csrf Service Type --Select Service Type-- @foreach ($service_types as $service_type) {{ $service_type->name }} @endforeach @error('service_type') {{ $message }} @enderror No. Of Hours Vehicle --Select Vehicle-- @foreach ($vehicles as $vehicle) {{ $vehicle->name }} @endforeach @error('vehicle_id') {{ $message }} @enderror Pickup Location @error('pickup_location') {{ $message }} @enderror Drop-off Location @error('drop_location') {{ $message }} @enderror Calculate Driving Base Price 0 Toll 0 Standard Gratuity 0 Administrative Charges 0 Total 0 Discount 0 @endsection @section('scripts') @endsection