@extends('layouts.app') @section('title') @if( ! empty($title)) {{ $title }} | @endif @parent @endsection @section('content')
@include('admin.sidebar_menu')
@if( ! empty($title))

{{ $title }}

@endif @include('admin.flash_msg')
@csrf
{!! $errors->has('category_name')? '

'.$errors->first('category_name').'

':'' !!}
{!! $errors->has('description')? '

'.$errors->first('description').'

':'' !!}
@foreach($categories as $category) @endforeach
@lang('app.category_name') (@lang('app.total_ads'))
{{ $category->category_name }} ({{ $category->product_count() }})
@endsection @section('page-js') @endsection