@extends('admin.layouts.app') @section('content') @if (count($errors) > 0)
Whoops! There were some problems with your input.

@endif

Edit Role

{!! Form::model($role, ['method' => 'PATCH','route' => ['roles.update', $role->id]]) !!}
{!! Form::text('name', null, array('placeholder' => 'Name','class' => 'form-control')) !!}
Permission:
@foreach($permission as $value) @endforeach
{!! Form::close() !!}
@endsection