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

Edit Role

@stop @section('content') @include('notifications')
{{ csrf_field() }} {{ method_field('PATCH') }}

Role Name

{{-- --}}
Back

Assign Permissions

{{-- --}}
@foreach( $permissions as $permission )
hasPermissionTo($permission->name) ? 'checked' : '' }}> {{ $permission->name }}
@endforeach
@stop