dbfdg @extends('layouts.admin') @section('page-title') {{__('POS Barcode Print')}} @endsection @section('breadcrumb') @endsection @push('css-page') @endpush @push('script-page') @endpush @section('action-btn')
@endsection @section('content')
{{Form::open(array('route'=>'pos.receipt','method'=>'post'))}}
{{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::text('quantity',null, array('class' => 'form-control','required'=>'required')) }}
{{Form::close()}}
@endsection