@extends('layouts.app') @section('title', ' - Edit Parking') @section('content') @push('css') @endpush
{{ __('application.parking.total_parking_space') }}

{{ $total_slots }}

{{ __('application.parking.total_booked') }}

{{ $currently_parking }}

{{ __('application.parking.total_available') }}

{{$total_slots - $currently_parking}}

{{ __('application.parking.quick_checkout') }}
@csrf
{{ __('application.parking.edit_parking') }}
@csrf @method('PUT')
@if(auth()->user()->hasRole('admin'))
@if ($errors->has('place_id')) {{ $errors->first('place_id') }} @endif
@else @endif
@if ($errors->has('vehicle_no')) {{ $errors->first('vehicle_no') }} @endif
@if ($errors->has('category_id')) {{ $errors->first('category_id') }} @endif
@if ($errors->has('driver_name')) {{ $errors->first('driver_name') }} @endif
@if ($errors->has('driver_mobile')) {{ $errors->first('driver_mobile') }} @endif

{{ __('application.parking.please_select_a_slot') }}

{{ __('application.parking.all_parking_list') }}
@endsection @push('scripts') @endpush