@extends('layouts.app') @section('css') @endsection @section('js') @endsection @section('content')
@include('layouts.components.admin.navbar')
@if(Session::has('done')) @endif @if ($errors->any()) @foreach ($errors->all() as $error) @endforeach @endif
@csrf
@if (Auth::user()->role != "seller")
@endif @if (Auth::user()->role != "seller")
@endif
@foreach ($Categories as $Category)
{{$Category->name}}
@foreach (json_decode($Category->{"sub_categories"}) as $key => $sub_category) @endforeach
@endforeach



@endsection