@extends('base') @section('content') @include('settings/navbar', ['selected' => 'roles'])

Delete Role

This will delete the role with the name '{{$role->display_name}}'.

{!! csrf_field() !!} @if($role->users->count() > 0)

This role has {{$role->users->count()}} users assigned to it. If you would like to migrate the users from this role select a new role below.

@include('form/role-select', ['options' => $roles, 'name' => 'migration_role_id'])
@endif

Are you sure you want to delete this role?

Cancel
@stop