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

@yield('title')

{{ $L('You have to select a product') }}
{{ $L('will be added to the list of barcodes for the selected product on submit') }}
{{ $L('The amount cannot be lower than #1', '0') }}
@include('components.datetimepicker', array( 'id' => 'best_before_date', 'label' => 'Best before', 'hint' => 'This will apply to added products', 'format' => 'YYYY-MM-DD', 'initWithNow' => false, 'limitEndToNow' => false, 'limitStartToNow' => true, 'invalidFeedback' => $L('A best before date is required and must be later than today'), 'nextInputSelector' => '#best_before_date' ))
@include('components.productcard')
@stop