@extends('layouts.main') @section('page-title') {{__('Manage POS Barcode Print')}} @endsection @section('page-breadcrumb') {{__('Product Barcode')}}, {{__('POS Barcode Print')}} @endsection @push('scripts') @endpush @section('page-action')
@endsection @section('content')
{{Form::open(array('route'=>'pos.receipt','method'=>'post','class'=>'needs-validation','novalidate'))}}
{{Form::label('warehouse_id',__('Warehouse'),['class'=>'form-label'])}} {{ Form::select('warehouse_id', $warehouses,'', array('class' => 'form-control select','id'=>'warehouse_id','required'=>'required')) }}
{{Form::label('product_id',__('Product'),['class'=>'form-label'])}}
{{ Form::label('quantity', __('Quantity'),['class'=>'form-label']) }} {{ Form::number('quantity',null, array('class' => 'form-control','placeholder'=>__('Enter Quantity'),'required'=>'required')) }}
{{Form::close()}}
@endsection