@extends('adminlte::page') @section('title', $pageTitle) @section('content_header')

{{ $pageTitle }}

@stop @section('content')
{!! Form::model($role, ['method' => 'PATCH','url' => ['roles', $role->id]]) !!}
Name: {!! Form::text('display_name', null, array('placeholder' => 'Name','class' => 'form-control')) !!}
Description: {!! Form::textarea('description', null, array('placeholder' => 'Description','class' => 'form-control','style'=>'height:100px')) !!}

Role Permissions:


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