@extends('backend.layouts.main') @section('title', 'Role-update') @section('main-container')
@if(session()->has('success'))
{{ session('success') }}
@endif @if(session()->has('error'))
{{ session('error') }}
@endif
Role Information
Be Carefull on changing it. This may distrub the site behaviours do only when necessary.
@csrf
Discard

Permissions this role have

@csrf @foreach ($permissions as $key=>$permission)
hasPermissionTo($permission->name) ? 'checked' : '' }}>
@endforeach
@endsection