@extends('layouts/eims_layout') @section('title', '| ' . $pageTitle) @section('content')
Add {{ $pageTitle }}
{!! Form::open(['url' => '', 'role' => 'form', 'class' => 'form-horizontal form-groups']) !!} {{--
{!! Form::label('campus_id', 'Campus: *', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::select('campus_id', ($campus), null, array('class'=>'form-control', 'id' => 'campus_id','placeholder' => 'Please Select Campus')) !!}

--}}
{!! Form::label( 'reminder_type', 'Reminder Type: *', ['class' => 'col-sm-3 control-label'], false, ) !!}
{!! Form::select('reminder_type', ['' => 'Please select', 'Before' => 'Before', 'After' => 'After'], null, [ 'class' => 'form-control', 'id' => 'reminder_type', ]) !!}

{!! Form::label( 'day', 'Reminder Days: *', ['class' => 'col-sm-3 control-label'], false, ) !!}
{!! Form::number('day', $value = null, [ 'class' => 'form-control', 'id' => 'day', 'type' => 'number', 'placeholder' => 'Enter fees reminder days', ]) !!}

{!! Form::label('submit', ' ', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::submit('Submit', ['id' => 'add', 'class' => 'btn btn-info']) !!} Close
{!! Form::close() !!}
@endsection