@extends('layout.default') @if($mode == 'edit') @section('title', $L('Edit shopping list item')) @else @section('title', $L('Create shopping list item')) @endif @section('viewJsName', 'shoppinglistform') @section('content')

@yield('title')

@if($mode == 'edit') @endif
@include('components.productpicker', array( 'products' => $products, 'nextInputSelector' => '#amount', 'isRequired' => false )) @php if($mode == 'edit') { $value = $listItem->amount; } else { $value = 1; } @endphp @include('components.numberpicker', array( 'id' => 'amount', 'label' => 'Amount', 'hintId' => 'amount_qu_unit', 'min' => 0, 'value' => $value, 'invalidFeedback' => $L('The amount cannot be lower than #1', '1') ))
@include('components.productcard')
@stop