@extends('admin.layout') @section('title', 'Modifica Utente') @section('page_title', 'Modifica Utente: ' . $user->name) @section('breadcrumbs') @endsection @section('content')

Dati Utente

@csrf @method('PUT')
isSuperAdmin() ? '1' : '0') === '1' ? 'checked' : '' }}>
Permessi Granulari
@foreach(\App\Models\User::MODULES as $module) @endforeach
Modulo Nessuno Lettura Completo
{{ ucfirst($module) }} permissions[$module] ?? 0) == 0 ? 'checked' : '' }}> permissions[$module] ?? 0) == 1 ? 'checked' : '' }}> permissions[$module] ?? 0) == 2 ? 'checked' : '' }}>
Annulla
@endsection @section('scripts') @endsection