{!! Form::open([ 'method' => 'POST', 'url' => route('cart.add', current_front()), ]) !!} {!! Form::hidden('product_id', $context->id) !!}
{{ $context->display('name') }}

{{ $context->display('description') }}

@if ($context->has_options('choice')) @lang('title.choices') @foreach ($context->options() as $option) @if ($option->type !== 'choice') @continue @endif @include('fragments.establishment.product.option.line', [ 'context' => $option ]) @endforeach @endif @if ($context->has_options('upsell')) @lang('title.extra_options') @foreach ($context->options() as $option) @if ($option->type !== 'upsell') @continue @endif @include('fragments.establishment.product.option.line', [ 'context' => $option ]) @endforeach @endif
@lang('action.cancel') @lang('action.add') @lang('action.add_to_cart')
{!! Form::close() !!}