@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::text('id', $configs->id, ['class' => 'form-control hidden', 'id' => 'id', 'type' => 'text']) !!}
{!! Form::label('name', 'Name:*', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('name', $value = $configs->name, [ '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 = $configs->number, [ 'class' => 'form-control', 'id' => 'number', 'type' => 'text', 'placeholder' => 'Enter number', ]) !!}

{!! Form::label('status', 'Status: *', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('status', $statusSett, $configs->status, [ 'class' => 'form-control', 'id' => 'status', 'placeholder' => 'Please Select Status', ]) !!}

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