@extends('layouts.frontend') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.trainingHistory.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.trainingHistory.fields.name_helper') }}
@if($errors->has('year'))
{{ $errors->first('year') }}
@endif {{ trans('cruds.trainingHistory.fields.year_helper') }}
@if($errors->has('start_date'))
{{ $errors->first('start_date') }}
@endif {{ trans('cruds.trainingHistory.fields.start_date_helper') }}
@if($errors->has('end_date'))
{{ $errors->first('end_date') }}
@endif {{ trans('cruds.trainingHistory.fields.end_date_helper') }}
@if($errors->has('organizer'))
{{ $errors->first('organizer') }}
@endif {{ trans('cruds.trainingHistory.fields.organizer_helper') }}
@endsection