{!! Form::hidden('id', $role->id) !!}
{!! Form::label('title', trans('manager::roles.label.title'), ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('title', $role->title, ['required' => 'true', 'autofocus' => 'true', 'id' => 'title', 'class' => 'form-control']) !!}
{!! Form::label('all_permissions', trans('manager::roles.label.all_permissions'), ['class' => 'col-sm-3 control-label']) !!}

Permissões @foreach ($pages->all() as $slug => $page)
@if (count($page['actions']) > 0)
@foreach ($page['actions'] as $action => $title)
@endforeach
@endif
@endforeach

{{ trans('manager::roles.btn.cancel') }}
@section('scripts') @parent @stop