@extends('admin.layout.app') @section('title', 'Create New Lesson') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ isset($lesson) ? 'Edit' : 'Create' }} Lesson

@csrf @if (isset($lesson)) @method('PUT') @endif
Title is automatically generated from the selected course, unit, lesson type, and type.
Back
@endsection @push('scripts') @endpush