@extends('pages/page')
@section('js')
@endsection
@section('css')
@parent
{{-- We borrow the subcat layout for images --}}
@endsection
@section('extra_nav')
Image category
@foreach ($sectors as $sector)
@if ($sector->url == "new-products")
@continue
@endif
- {{ $sector->title }}
@endforeach
@endsection
@section('below_content')
@php
$alerts = app(Cartalyst\Alerts\Alerts::class)->get();
@endphp
@foreach ($alerts as $alert)
{{ $alert->message }}
@endforeach
@if ($extras)
@endif
@if ($sector_categories)
Please select a subcategory
@foreach ($sector_categories as $sector_categorie)
@endforeach
@endif
@endsection