@extends('admin.layout.app') @section('title', 'Create Role') @section('content')
@csrf @method('PUT')
@foreach ($permissions as $entity => $features) @foreach (['view', 'create', 'update', 'delete'] as $action) @endforeach @endforeach
Permission View Create Update Delete
{{ ucfirst($entity) }}
@endsection