@extends('layouts/front') @section('title', $title) @section('content')

{{ $title }}

{{ $subtitle }}

@include("shared.alerts") @foreach($groups->chunk(3) as $row)
@foreach($row as $group) @php($startPrice = $group->startPrice())
@if ($group->image)
{{ $group->trans('name') }}
@endif
@if ($group->pinned) {{ $group->getMetadata('pinned_label', __('store.pinned')) }} @endif

{{ $group->trans('name') }}

{{ $group->trans('description') }}

@endforeach
@endforeach @foreach($products->chunk(3) as $row)
@foreach($row as $product) @if($product->pinned) @include('shared.products.pinned') @else @include('shared.products.product') @endif @endforeach
@endforeach
@if (app('extension')->extensionIsEnabled('faq')) @include('faq::widget', ['group' => $group ?? null]) @endif {!! render_theme_sections() !!} @endsection