@extends('layouts.promoter') @section('content')
{{ trans('global.create') }} {{ trans('cruds.timeEntry.title_singular') }}
@csrf
@if($errors->has('promoter'))
{{ $errors->first('promoter') }}
@endif {{ trans('cruds.timeEntry.fields.promoter_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