@extends('layouts/pos_layout') @section('title', '| Pos Fee Configuration') @section('content')
Pos Fee Configuration
{!! Form::open([ 'url' => '', 'enctype' => 'multipart/form-data', 'role' => 'form', 'class' => 'form-horizontal form-groups', ]) !!}
{!! Form::label('effect_from', 'Effect From:*', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('valid_from', $value = null, [ 'class' => 'form-control', 'id' => 'valid_from', 'type' => 'text', 'placeholder' => 'Enter Effect From', 'readonly' => true, ]) !!}

{!! Form::label('Fee Type', 'Fee Type:*', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('fee_type', $feeTypeFor, null, [ 'class' => 'form-control', 'id' => 'fee_type', 'placeholder' => 'Select Fee Type', ]) !!}

{!! Form::label('category_id', 'Category*', ['class' => 'col-sm-2 control-label']) !!}

{!! Form::label('amount', 'Amount:*', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('amount', $value = null, [ 'class' => 'form-control', 'id' => 'amount', 'type' => 'text', 'placeholder' => 'Amount', ]) !!}

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