@extends('layouts/pos_layout') @section('title', '| Reporting Boss Function Configuration') @section('content')
Reporting Boss Function Configuration
{!! Form::open([ 'url' => '', 'enctype' => 'multipart/form-data', 'role' => 'form', 'class' => 'form-horizontal form-groups', ]) !!}
{!! Form::label('module_id', 'Module', ['class' => 'col-sm-2 control-label']) !!}
{{-- {!! Form::select('module_id', ['' => '--Select--'] + $module, null, [ 'class' => 'form-control', 'id' => 'module_id', 'type' => 'text', ]) !!} --}} {!! Form::text('module_id', 'Pos', [ 'class' => 'form-control', 'id' => 'module_id', 'type' => 'text', 'value' => '8', 'readonly' => true, ]) !!}

{!! Form::label('slug', 'Pos Module', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('slug', ['' => '--Select--'] + $settingsFor, null, [ 'class' => 'form-control', 'id' => 'slug', 'type' => 'text', ]) !!}

{!! Form::label('return_route', 'Return Route:', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('return_route', $value = null, [ 'class' => 'form-control', 'id' => 'return_route', 'type' => 'text', ]) !!}

{!! Form::label('update_value', 'Update Value:', ['class' => 'col-sm-2 control-label']) !!}

NB: You must select the above menus if you want to apply for reporting boss config.


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