@extends('layouts.dash') {!! $with_navbar=false !!} @section('title') Permissions @stop @section('title_card',"Mise à jour d'une Permission") @section('content')
@if ($errors) @foreach ($errors->all() as $error)
{!! $error !!}
@endforeach @endif
{!! Form::model($permission, ['class' => 'form-horizontal']) !!}
{!! Form::label('name', 'Nom') !!} {!! Form::text('name', null, ['disabled', 'class' => 'form-control']) !!}
{!! Form::close() !!}
@endsection