@extends('layouts.app') @section('title', ' - Edit Floor') @section('content')
{{ __('application.floor.edit_floor') }} {{ __('application.floor.floor_list') }}
@csrf @method('PUT')
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('place_id')) {{ $errors->first('place_id') }} @endif
@if ($errors->has('level')) {{ $errors->first('level') }} @endif
@if ($errors->has('remarks')) {{ $errors->first('remarks') }} @endif
@endsection