@extends('layouts.app') @section('title', ' - Create New Parking Slot') @section('content')
{{ __('application.slot.add_slot') }} {{ __('application.slot.slot_list') }}
@csrf
@if ($errors->has('place_id')) {{ $errors->first('place_id') }} @endif
@if ($errors->has('category_id')) {{ $errors->first('category_id') }} @endif
@if ($errors->has('floor_id')) {{ $errors->first('floor_id') }} @endif
@if ($errors->has('slot_name')) {{ $errors->first('slot_name') }} @endif
@if ($errors->has('identity')) {{ $errors->first('identity') }} @endif
@if ($errors->has('remarks')) {{ $errors->first('remarks') }} @endif
@endsection @push('scripts') @endpush