@extends('layouts.dash') {!! $with_navbar=false !!} @section('title') Rôle @stop @section('title_card',"Consultation du Rôle") @section('content')
@if ($errors) @foreach ($errors->all() as $error)
{!! $error !!}
@endforeach @endif
{!! Form::model($role, ['class' => 'form-horizontal']) !!}
{!! Form::label('name', 'Nom') !!} {!! Form::text('name', null, ['readonly', 'class' => 'form-control']) !!}
{!! Form::label('permissions', 'Permissions') !!} {!! Form::select( 'role_permissions[]', $liste_premissions, $t_getPermissions, [ 'readonly', 'class' => 'selectpicker form-control', 'multiple'=> 'multiple', 'data-selected-text-format'=>"count", 'data-width' => "100%" ] ) !!}
{!! Form::close() !!}
@endsection