@extends('admin.master') @section('content') @if(session()->has('message'))
{{ session()->get('message') }}
@endif

Create Course Category

@method('PUT') @csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if($errors->has('total_course'))
{{ $errors->first('total_course') }}
@endif
@if($errors->has('course_category_photo'))
{{ $errors->first('course_category_photo') }}
@endif
@endsection