@extends('layouts.app') @section('title', ' - Edit Parking Slot') @section('content')
{{ __('application.slot.edit_slot') }} {{ __('application.slot.slot_list') }}
@csrf @method('PUT')
@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