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

{{ trans('cruds.booking.fields.start_time_helper') }}

@if($errors->has('finish_time')) {{ $errors->first('finish_time') }} @endif

{{ trans('cruds.booking.fields.finish_time_helper') }}

@if($errors->has('status')) {{ $errors->first('status') }} @endif

{{ trans('cruds.booking.fields.status_helper') }}

{{--
@if($errors->has('status_email')) {{ $errors->first('status_email') }} @endif

{{ trans('cruds.booking.fields.status_email_helper') }}

@if($errors->has('status_sms')) {{ $errors->first('status_sms') }} @endif

{{ trans('cruds.booking.fields.status_sms_helper') }}

--}}
@if($errors->has('game')) {{ $errors->first('game') }} @endif

{{ trans('cruds.booking.fields.game_helper') }}

@endsection