@extends('adminlte::page') @section('title', 'Edit Role') @section('content_header')

Edit Role & Permission

@stop @section('content')
@if (count($errors) > 0)
Whoops! There were some problems with your input.
@endif
Role: {{ $role->name }}
@csrf @method('PUT')

Permissions:

@foreach ($permissions as $permission)
@endforeach
@stop @section('css') @stop @section('js') @stop