@extends('layouts.app') @section('content')

Editar Rol

@if($errors->any()) @endif {!! Form::model($role,['method'=>'PATCH', 'route'=>['roles.update',$role->id]]) !!}
{!! Form::text('name', null, array('class'=>'form-control')) !!}
{!! Form::text('description', $role->description, array('class'=>'form-control')) !!}

@foreach($permission as $value)
@endforeach
{!! Form::close() !!}
@endsection