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

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

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