@foreach ($errors->all() as $error)
@endforeach
{{{trans('Manage Category')}}}
@if($categories->count() > 0)
@foreach($categories as $category)
-
{{{ $category->title }}}
@php
$delete_title = trans("Delete Confirm Title");
$delete_message = trans("Category Delete Message");
$deleted = trans("Delete Title");
@endphp
{!! Form::open(['url' => '/dashboard/general/settings/edit-category/'.$category->id,'class'=>'category_edit_form',
'files' => true, 'enctype' => 'multipart/form-data']) !!}
{!! Form::close() !!}
@php $counter++; @endphp
@endforeach
@else
@include('errors.no-record')
@endif
{!! Form::open(['url' => '/dashboard/general/settings/create-category','id'=>'group_form',
'enctype' => 'multipart/form-data', 'multiple' => true]) !!}
{!! Form::close() !!}
@if( method_exists($categories,'links') ) {{{ $categories->links('pagination.custom') }}} @endif