@extends('layouts.admin.app') @section('content')
Course Add add
@csrf

Add Course

@if(Session::has('success'))
{{ Session::get('success') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('classes_heading')) {{ $errors->first('classes_heading') }} @endif
@if ($errors->has('category')) {{ $errors->first('category') }} @endif
@php $skill_level = skill_level(); @endphp
@if ($errors->has('deadline')) {{ $errors->first('deadline') }} @endif


@if ($errors->has('certificate')) {{ $errors->first('certificate') }} @endif


@if ($errors->has('bestseller')) {{ $errors->first('bestseller') }} @endif

@if ($errors->has('short_description')) {{ $errors->first('short_description') }} @endif
@if ($errors->has('long_description')) {{ $errors->first('long_description') }} @endif
@if ($errors->has('learning_point')) {{ $errors->first('learning_point') }} @endif
@if ($errors->has('required_point')) {{ $errors->first('required_point') }} @endif

@if ($errors->has('description_details')) {{ $errors->first('description_details') }} @endif
@if ($errors->has('image')) {{ $errors->first('image') }} @endif
@if ($errors->has('cost')) {{ $errors->first('cost') }} @endif
@if ($errors->has('price')) {{ $errors->first('price') }} @endif
@if ($errors->has('pricediff')) {{ $errors->first('pricediff') }} @endif
@if ($errors->has('price_deadline')) {{ $errors->first('price_deadline') }} @endif
@if ($errors->has('training_feature')) {{ $errors->first('training_feature') }} @endif
@if ($errors->has('fnq')) {{ $errors->first('fnq') }} @endif
@if ($errors->has('course_faq')) {{ $errors->first('course_faq') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@include('layouts.admin.footer') @endsection