@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') ))
@if (GROCY_FEATURE_FLAG_RECIPES) @include('components.recipepicker', array( 'recipes' => $recipes, 'isRequired' => false, 'hint' => $L('This is for statistical purposes only') )) @endif
@include('components.productcard')
@stop