@extends('backend.layouts.app') @section('content')
Create Lesson
@csrf
@if($errors->has('course_id')) {{ $errors->first('course_id') }} @endif
@if($errors->has('title')) {{ $errors->first('title') }} @endif
@if($errors->has('slug')) {{ $errors->first('slug') }} @endif
@if($errors->has('full_text')) {{ $errors->first('full_text') }} @endif
@if($errors->has('short_text')) {{ $errors->first('short_text') }} @endif
@if($errors->has('embed_id')) {{ $errors->first('embed_id') }} @endif
@if($errors->has('free_lesson')) {{ $errors->first('free_lesson') }} @endif
@if($errors->has('published')) {{ $errors->first('published') }} @endif
@endsection