@extends('admin::layouts.master')
@section('pagetitle','Manage Roles')
@section('content')
@if (session('success'))
@foreach ($roles as $key=>$role)
Total users with this role: {{ $role->user_count }}
All Admin Controls
View and Edit Financial Summaries
Enabled Bulk Reports
View and Edit Payouts
View and Edit Disputes
@endforeach
@can('create role')
@endcan
@include('admin::roles.mdl_role')
@endsection
@section('scripts')
@endsection