@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.lesson.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('course'))
{{ $errors->first('course') }}
@endif {{ trans('cruds.lesson.fields.course_helper') }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.lesson.fields.name_helper') }}
@if($errors->has('topic'))
{{ $errors->first('topic') }}
@endif {{ trans('cruds.lesson.fields.topic_helper') }}
@if($errors->has('date'))
{{ $errors->first('date') }}
@endif {{ trans('cruds.lesson.fields.date_helper') }}
@if($errors->has('start_time'))
{{ $errors->first('start_time') }}
@endif {{ trans('cruds.lesson.fields.start_time_helper') }}
@if($errors->has('end_time'))
{{ $errors->first('end_time') }}
@endif {{ trans('cruds.lesson.fields.end_time_helper') }}
@if($errors->has('resource_person'))
{{ $errors->first('resource_person') }}
@endif {{ trans('cruds.lesson.fields.resource_person_helper') }}
@if($errors->has('trg_session'))
{{ $errors->first('trg_session') }}
@endif {{ trans('cruds.lesson.fields.trg_session_helper') }}
@endsection @section('scripts') @endsection