@extends('layouts.app') @section('title', 'Settings · DocShare') @section('section', 'Admin console') @section('subtitle', 'Manage regions, countries, OEMs, categories, and role permissions.') @section('content') @if(session('status'))
{{ session('status') }}
@endif @if($errors->any())

Please review the form

@endif

Regions

{{ $regions->count() }} total
@csrf

Countries

{{ $countries->count() }} total
@csrf

OEMs

{{ $oems->count() }} total
@csrf

Categories

{{ $categories->count() }} total
@csrf

Roles and permissions

@foreach($roles as $role)

{{ $role->name }}

{{ $role->users_count }} users · {{ $role->permissions->count() }} permissions

@endforeach
@endsection