@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.appointment.title_singular') }}
@csrf
@if($errors->has('client_id')) {{ $errors->first('client_id') }} @endif
@if($errors->has('employee_id')) {{ $errors->first('employee_id') }} @endif
@if($errors->has('start_time')) {{ $errors->first('start_time') }} @endif

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

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

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

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

{{ trans('cruds.appointment.fields.price_helper') }}

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

{{ trans('cruds.appointment.fields.comments_helper') }}

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

{{ trans('cruds.appointment.fields.services_helper') }}

@endsection