@extends('layouts.admin') @section('title', 'Add New Course') @section('content')
Add New Course
@if ($errors->any())
Errors occurred:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
Cancel
@endsection