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

@yield('title')

@include('components.productpicker', array( 'products' => $products, 'nextInputSelector' => '#best_before_date .datetimepicker-input' )) @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', 'shortcutValue' => '2999-12-31', 'shortcutLabel' => 'Never expires' ))
{{ $L('The amount cannot be lower than #1', '1') }}
{{ $L('The price cannot be lower than #1', '0') }}
@include('components.productcard')
@stop