@extends('admin.master_layout') @section('title') {{ $title }} @endsection @section('body-header')

{{ $title }}

{{ __('translate.Staff Management') }} >> {{ $title }}

@endsection @section('body-content')
@csrf @if ($role) @method('PUT') @endif

{{ __('translate.Role Information') }}

{{ __('translate.Permissions') }}
@if ($role && $role->isSuperAdmin())

{{ __('translate.Super admin always has full access') }}

@else @foreach ($sectionGroups as $group)
{{ $group['label'] }}
@foreach ($group['sections'] as $key => $label)
@endforeach
@endforeach @endif
{{ __('translate.Cancel') }}
@endsection