@extends('layout.default') @section('title', $L('Purchase')) @section('activeNav', 'purchase') @section('viewJsName', 'purchase') @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') }}
@include('components.datetimepicker', array( 'id' => 'best_before_date', 'label' => 'Best before', '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' => '#amount', 'additionalCssClasses' => 'date-only-datetimepicker' ))
{{ $L('The amount cannot be lower than #1', '1') }}
@include('components.productcard')
@stop