@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.timeEntry.title_singular') }}
{{-- @method('PUT') --}} @csrf
@if($errors->has('promoter'))
{{ $errors->first('promoter') }}
@endif {{ trans('cruds.timeEntry.fields.promoter_helper') }}
@if($errors->has('date'))
{{ $errors->first('date') }}
@endif {{ trans('cruds.timeEntry.fields.date_helper') }}
@if($errors->has('time_start'))
{{ $errors->first('time_start') }}
@endif {{ trans('cruds.timeEntry.fields.time_start_helper') }}
@if($errors->has('time_end'))
{{ $errors->first('time_end') }}
@endif {{ trans('cruds.timeEntry.fields.time_end_helper') }}
@endsection