@extends('layouts.app') @section('title', 'Add Lesson Plan | Curriculum') @section('sidebar-menu') @include('teacher.partials.sidebar') @endsection @section('breadcrumb') Home / Curriculum / Add Lesson Plan @endsection @section('content')
Add New Lesson Plan
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
Cancel
@endsection