@extends('layouts.master-vnext') @section('page-title') Select items @endsection @section('content') {{ Form::open(array('url' => action('BarcodeController@selectedProducts'))) }}
{{ Form::label('items[]', trans('validation.attributes.' . 'items'), ['class' => 'control-label']) }} {{ Form::select('items[]', $selection, null, ['multiple' => 'multiple', 'class' => 'form-control improved-select']) }}
{{ Form::close() }} @endsection