@extends('layouts/pos_layout') @section('title', '| Product Barcode Configuration') @section('content')
Product Barcode Configuration
{!! Form::open([ 'url' => '', 'enctype' => 'multipart/form-data', 'role' => 'form', 'class' => 'form-horizontal form-groups', ]) !!}
{!! Form::label('title', 'Title:', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('title', 'Product Barcode Config', [ 'class' => 'form-control', 'id' => 'tittle', 'type' => 'text', 'readonly' => true, ]) !!}
{!! Form::label('content_description', 'Description:', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::textarea('content_description', $value = null, [ 'class' => 'form-control', 'id' => 'content_description', 'type' => 'text', 'rows' => '4', 'placeholder' => 'Description', ]) !!}
{!! Form::label('name', 'Name:', ['class' => 'col-sm-2 control-label']) !!}

NB: You must select the above menus if you want to generate a barcode. Select them if they are the same, the Barcode will not be generated, if they are different, Barcode will be generated.


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