@extends('backend.layouts.app') @section('content') @if(Session::has('message'))
{{ Session::get('message')}}
@endif @if(Session::has('error_message'))
{{ Session::get('error_message')}}
@endif @if (count($errors) > 0)
@endif {!! Html::script('expand_theme/js/jquery.validate.min.js') !!} {!! Html::script('expand_theme/select2/dist/js/select2.full.min.js') !!} {!! Html::style('expand_theme/select2/dist/css/select2.min.css') !!}

Add Class

{!! Form::open(array('url' => 'admin/classes/create', 'class' => 'form-horizontal edit_form', 'files' => true )) !!}

A class can meet on one or more days during a week.
 Mon   Tue   Wed   Thu   Fri   Sat   Sun 

You can set maximum enrollments of class.

You can set minimum and maximum grade levels of class.

You can specify the date users can start registering for this class and the date the registration period closes.

 Do you have early bird discount?


You can qualify people who can register for your class based on their gender, age, and grade. The system will prevent users from registering for the class if they do not meet all the requirements.

 Assign Addons
@foreach($category_details as $category)
@endforeach
 Assign Sub Classes/Services
@foreach($class_types_details as $class_type)
@endforeach
 Do you want to add drop student dates for this class ?


Cancel
{!! Form::close() !!}
{!! Html::style('expand_theme/timepicker/bootstrap-timepicker.min.css') !!} {!! Html::script('expand_theme/timepicker/bootstrap-timepicker.min.js') !!} {!! Html::script('expand_theme/bootstrap-daterangepicker/daterangepicker.js') !!} {!! Html::script('expand_theme/bootstrap-datepicker/dist/js/bootstrap-datepicker.min.js') !!} {!! Html::script('expand_theme/input-mask/jquery.inputmask.js') !!} {!! Html::script('expand_theme/input-mask/jquery.inputmask.date.extensions.js') !!} {!! Html::script('expand_theme/input-mask/jquery.inputmask.extensions.js') !!} {!! Html::script('expand_theme/moment/min/moment.min.js') !!} {!! Html::style('expand_theme/font-awesome/css/font-awesome.min.css') !!} {!! Html::style('expand_theme/bootstrap-daterangepicker/daterangepicker.css') !!} {!! Html::style('expand_theme/bootstrap-datepicker/dist/css/bootstrap-datepicker.min.css') !!} @stop