{{ Form::label('name', __('messages.role.name').':', ['class' => 'font-weight-bold']) }}

{{ html_entity_decode($role->name) }}

{{ Form::label('created_at', __('messages.common.created_on').(':'),['class'=>'font-weight-bold']) }}
{{ $role->created_at->diffForHumans() }}
{{ Form::label('created_at', __('messages.common.last_updated').(':'),['class'=>'font-weight-bold']) }}
{{ $role->updated_at->diffForHumans() }}
@if(!$role->permissions()->where('name','=','role_client')->exists())
{{ Form::label('name', __('messages.role.permissions').':', ['class' => 'font-weight-bold']) }}
@forelse($permissionLists as $permissionList) {{ $permissionList}}
@empty {{ __('messages.common.n/a') }} @endforelse
@endif
{{ Form::label('name', __('messages.role.description').':', ['class' => 'font-weight-bold']) }}
{!! !empty($role->description) ? html_entity_decode($role->description) : 'N/A' !!}