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

Create Course

@csrf
@if($errors->has('course_category_id'))
{{ $errors->first('course_category_id') }}
@endif
@if($errors->has('course_name'))
{{ $errors->first('course_name') }}
@endif
@if($errors->has('course_description'))
{{ $errors->first('course_description') }}
@endif
@if($errors->has('class_start_end_date'))
{{ $errors->first('class_start_end_date') }}
@endif
@if($errors->has('total_classes'))
{{ $errors->first('total_classes') }}
@endif
@if($errors->has('class_schedule1'))
{{ $errors->first('class_schedule1') }}
@endif
@if($errors->has('class_schedule2'))
{{ $errors->first('class_schedule2') }}
@endif
@if($errors->has('venue'))
{{ $errors->first('venue') }}
@endif
@if($errors->has('price_offer'))
{{ $errors->first('price_offer') }}
@endif
@if($errors->has('total_sit'))
{{ $errors->first('total_sit') }}
@endif
@if($errors->has('pre_knowledge'))
{{ $errors->first('pre_knowledge') }}
@endif
@if($errors->has('last_date_apply'))
{{ $errors->first('last_date_apply') }}
@endif
@if($errors->has('class_start_date'))
{{ $errors->first('class_start_date') }}
@endif
@if($errors->has('price'))
{{ $errors->first('price') }}
@endif
@if($errors->has('course_details'))
{{ $errors->first('course_details') }}
@endif
@if($errors->has('image1'))
{{ $errors->first('image1') }}
@endif
@if($errors->has('image2'))
{{ $errors->first('image2') }}
@endif
@endsection