@extends('layouts/ums_layout') @section('title', '| New Fee') @section('content')
{{--
--}} {{--
--}}
Add Fee
{!! Form::open(array('url' => '', 'id' => '', 'role' => 'form', 'class'=>'form-horizontal form-groups')) !!}
{!! Form::label('name', 'Fee Type Name:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('name', $value = null, ['class' => 'form-control', 'id' => 'name', 'type' => 'text', 'placeholder' => 'Enter Fee Type Name','required']) !!}
{!! Form::label('amount', 'Amount:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('amount', $value = null, ['class' => 'form-control', 'id' => 'amount', 'type' => 'text', 'placeholder' => 'Enter Amount','required']) !!}
{!! Form::label('description', 'Description:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::textarea('description', $value = null, ['class' => 'form-control', 'id' => 'description', 'rows' => 4, 'cols' => 20, 'placeholder' => 'Enter Description']) !!}
{!! Form::label('Fee for Pre-Admission', 'Fee for Pre-Admission:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::label('submit', ' ', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::submit('submit', ['id' => 'add', 'class' => 'btn btn-info']) !!} {{ Form::reset('Reset', ['class' => 'btn btn-warning']) }} Close
{!! Form::close() !!}
{{--
--}}
@endsection