{!! Form::open(['route' => $base_route.'.store', 'method' => 'POST', 'class' => 'form-horizontal', 'id' => 'validation-form', "enctype" => "multipart/form-data"]) !!}
{!! Form::label('fee_head_title', 'Head', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('fee_head_title', null, ["placeholder" => "e.g. Monthly Fee", "class" => "form-control border-form upper","required"]) !!} @include('includes.form_fields_validation_message', ['name' => 'fee_head_title'])
{!! Form::label('fee_head_amount', 'Amount', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('fee_head_amount', null, ["placeholder" => "e.g. 5000", "class" => "form-control border-form upper"]) !!} @include('includes.form_fields_validation_message', ['name' => 'fee_head_amount'])
{!! Form::close() !!}