{!! Form::open(['url' => action([\Modules\Crm\Http\Controllers\ContactBookingController::class, 'store']), 'method' => 'post', 'id' => 'add_booking_form' ]) !!} {!! Form::hidden('contact_id', auth()->user()->crm_contact_id); !!} {!! Form::hidden('booking_status', 'waiting'); !!}

@lang( 'restaurant.add_booking' )

@if(count($business_locations) == 1) @php $default_location = current(array_keys($business_locations->toArray())) @endphp @else @php $default_location = null; @endphp @endif
{!! Form::select('location_id', $business_locations, $default_location, ['class' => 'form-control', 'placeholder' => __('purchase.business_location'), 'required', 'id' => 'booking_location_id']); !!}
{!! Form::label('status', __('restaurant.start_time') . ':*') !!}
{!! Form::text('booking_start', null, ['class' => 'form-control','placeholder' => __( 'restaurant.start_time' ), 'required', 'id' => 'start_time', 'readonly']); !!}
{!! Form::label('status', __('restaurant.end_time') . ':*') !!}
{!! Form::text('booking_end', null, ['class' => 'form-control','placeholder' => __( 'restaurant.end_time' ), 'required', 'id' => 'end_time', 'readonly']); !!}
{!! Form::label('booking_note', __( 'restaurant.customer_note' ) . ':') !!} {!! Form::textarea('booking_note', null, ['class' => 'form-control','placeholder' => __( 'restaurant.customer_note' ), 'rows' => 3 ]); !!}
{!! Form::close() !!}