name) }}" class="form-control {{ $errors->has('name') ? ' is-invalid' : '' }}" required autofocus> @if ($errors->has('name')) {{ $errors->first('name') }} @endif
slug) }}"> @if ($errors->has('slug')) {{ $errors->first('slug') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif

{{ __('Permiso Especial') }}

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

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

@foreach($permissions AS $item)
{{ Form::checkbox('permissions[]', $item->id, null, ['id'=>$item->id]) }}
@endforeach