@extends('layouts.app') @section('content')

Pre-Booking

@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
{{ $errors->first() }}
@endif
@if($customer)
Name: {{ $customer->name }}
Father Name: {{ $customer->father_name }}
Phone: {{ $customer->phone }}
@else
No customer found. Create New Customer
@endif
@csrf
@if($scheme)
Based on scheme: {{ $scheme->name }} ({{ $scheme->token_pct }}%)
@endif
@if(old('payment_type') === 'cheque')
@endif
@endsection