@extends('templates.material.main') @section('jquery') {{-- Including this section to override it empty. Using jQuery from webpack build --}} @endsection @push('before-scripts') @endpush @section('nombre_modulo', __('Roles')) @section('breadcrumb') @endsection @section('content')

{{ __('Roles') }}# {{str_pad($role->id, 6, '0', STR_PAD_LEFT)}}

{{ __('Nombre') }}: {{$role->name}}

{{ __('Slug') }}: {{$role->slug}}

{{ __('Descripción') }}: {{$role->description}}

{{ __('Permiso Especial') }}

special) == 'all-access' ? 'checked="checked"' : '' }} disabled> special) == 'no-access' ? 'checked="checked"' : '' }} disabled>

{{ __('Lista de Permisos') }}

@foreach($permissions AS $item)
{{ Form::checkbox('permissions[]', $item->id, (in_array($item->id, $selected)? true : false), ['disabled' => 'disabled', 'id'=>$item->id]) }}
@endforeach

{{__('Regresar')}}
@endsection