@extends('oxygen::layouts.master-dashboard') @section('content')
{{ lotus()->pageHeadline($pageTitle) }} {{ lotus()->breadcrumbs([ ['Dashboard', route('dashboard')], ['Access Permissions', route('manage.access.index')], [$pageTitle, null, true] ]) }} @if ($user->can('add-groups')) Add a New Group

@else

Only account owners and administrators can add users. Please contact a group Admin to add new users.


@endif
Current User Groups
@foreach ($rolesData as $role) @endforeach
Group View Users Add Users Edit Permissions Actions
{{ $role['title'] }}
{{ $role['description'] }}
View Users @if ($user->can('edit-group-users')) @endif @if ($user->can('edit-group-permissions')) Permissions @endif
@if ($user->can('edit-groups')) Edit Role @endif @if ($user->can('delete-groups') && $role['allow_to_be_deleted'])
{{ csrf_field() }} {{ method_field('delete') }}
@endif
@include('oxygen::groups.add-users-to-group') @endsection