@section('title', 'Company Roles') @section('page-script') @endsection

A role provided access to predefined menus and features so that depending on
assigned role an administrator can have access to what user needs.

@can('read company role') @forelse ($roles as $role)
Total {{ $role->users_count}} users

{{$role->name}}

@can('update company role') Edit Role @endcan
@empty @endforelse @endcan @can('create company role')
add-new-roles

Add role, if it does not exist

@endcan
@include('admin/_partials/_modals/modal-add-company-role') @include('admin/_partials/_modals/modal-edit-role')