@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('offerpercentage')) {{ $errors->first('offerpercentage') }} @endif
@if ($errors->has('offertime')) {{ $errors->first('offertime') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@if(isset($offerId) && $offerId!='') @else @endif
@include('layouts.admin.footer') @endsection