@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.hotel.title_singular') }}
id]) }}" method="POST" enctype="multipart/form-data"> @csrf @method('PUT')
@if($errors->has('name'))

{{ $errors->first('name') }}

@endif

{{ trans('cruds.hotel.fields.name_helper') }}

@if($errors->has('photo'))

{{ $errors->first('photo') }}

@endif

{{ trans('cruds.hotel.fields.photo_helper') }}

@if($errors->has('address'))

{{ $errors->first('address') }}

@endif

{{ trans('cruds.hotel.fields.address_helper') }}

@if($errors->has('description'))

{{ $errors->first('description') }}

@endif

{{ trans('cruds.hotel.fields.description_helper') }}

@if($errors->has('rating'))

{{ $errors->first('rating') }}

@endif

{{ trans('cruds.hotel.fields.rating_helper') }}

@endsection @section('scripts') @stop