@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.booking.title_singular') }}
@csrf
@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('game')) {{ $errors->first('game') }} @endif

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

@endsection