@extends('Shop.layout.layout', [ 'title' => __('home.title'), ]) @section('content') {{ Form::open(['id' => 'category-form', 'autocomplete' => 'off']) }}
@include('Shop._partials.display_filters')

@foreach($breadcrumb ?? [] as $parent) {{ $parent['name'] }} / @endforeach {{ $category['name'] }}

{!! $category['description'] !!}

@include('Shop.Shelves.partials.category_add')
@include('Shop.Tags.partials.filter') @if ($display_by_rows ?? false) @include('Shop.Shelves.partials.category_articles_rows') @else @include('Shop.Shelves.partials.category_articles') @endif {{ Form::close() }} @endsection @include('load.layout.modal')