@extends('layout.default') @section('title', $L('Consume')) @section('activeNav', 'consume') @section('viewJsName', 'consume') @section('content')

@yield('title')

@include('components.productpicker', array( 'products' => $products, 'nextInputSelector' => '#amount', 'disallowAddProductWorkflows' => true )) @include('components.numberpicker', array( 'id' => 'amount', 'label' => 'Amount', 'hintId' => 'amount_qu_unit', 'min' => 1, 'value' => 1, 'invalidFeedback' => $L('The amount cannot be lower than #1', '1') ))
@include('components.productcard')
@stop