@extends('Shop.layout.layout', [
'title' => __('home.title'),
])
@section('content')
{{ Form::open(['id' => 'category-form', 'autocomplete' => 'off']) }}
@include('Shop.Shelves.partials.breadcrumb')
@include('Shop.Shelves.partials.display-type')
{!! $category['description'] !!}
@include('Shop.Shelves.partials.category_add')
@include('Shop._partials.display_filters')
@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')