@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.timeEntry.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('work_type'))
{{ $errors->first('work_type') }}
@endif {{ trans('cruds.timeEntry.fields.work_type_helper') }}
@if($errors->has('project'))
{{ $errors->first('project') }}
@endif {{ trans('cruds.timeEntry.fields.project_helper') }}
@if($errors->has('start_time'))
{{ $errors->first('start_time') }}
@endif {{ trans('cruds.timeEntry.fields.start_time_helper') }}
@if($errors->has('end_time'))
{{ $errors->first('end_time') }}
@endif {{ trans('cruds.timeEntry.fields.end_time_helper') }}
@endsection