Files
glastree/storage/framework/views/d6abb9d4582d74a40cf71c1259a64b78.php
T
2026-05-29 06:54:07 +02:00

101 lines
5.7 KiB
PHP
Executable File

<?php $__env->startSection('title', 'Crea Utente'); ?>
<?php $__env->startSection('page_title', 'Crea Nuovo Utente'); ?>
<?php $__env->startSection('breadcrumbs'); ?>
<li class="breadcrumb-item"><a href="/admin/utenti">Admin</a></li>
<li class="breadcrumb-item"><a href="/admin/utenti">Utenti</a></li>
<li class="breadcrumb-item active">Nuovo</li>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<div class="row">
<div class="col-md-8">
<div class="card">
<div class="card-header">
<h3 class="card-title">Dati Utente</h3>
</div>
<div class="card-body">
<form method="POST" action="/admin/utenti">
<?php echo csrf_field(); ?>
<div class="form-group">
<label>Nome *</label>
<input type="text" name="name" class="form-control" required value="<?php echo e(old('name')); ?>">
</div>
<div class="form-group">
<label>Email *</label>
<input type="email" name="email" class="form-control" required value="<?php echo e(old('email')); ?>">
</div>
<div class="form-group">
<label>Password *</label>
<input type="password" name="password" class="form-control" required minlength="8">
</div>
<div class="form-group">
<label>Conferma Password *</label>
<input type="password" name="password_confirmation" class="form-control" required minlength="8">
</div>
<div class="form-group">
<label>Ruolo Predefinito</label>
<select name="role_preset_id" class="form-control" id="rolePresetSelect">
<option value="">Personalizzato</option>
<?php $__currentLoopData = $rolePresets; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $preset): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<option value="<?php echo e($preset->id); ?>"><?php echo e($preset->name); ?> - <?php echo e($preset->description); ?></option>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</select>
</div>
<input type="hidden" name="is_admin" value="0">
<div class="form-group">
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input" id="isAdmin" name="is_admin" value="1" <?php echo e(old('is_admin') === '1' ? 'checked' : ''); ?>>
<label class="custom-control-label" for="isAdmin">Superadmin (bypass ACL)</label>
</div>
</div>
<div id="permissionsSection" class="mt-4">
<h5>Permessi Granulari</h5>
<table class="table table-sm">
<thead>
<tr>
<th>Modulo</th>
<th>Nessuno</th>
<th>Lettura</th>
<th>Completo</th>
</tr>
</thead>
<tbody>
<?php $__currentLoopData = \App\Models\User::MODULES; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $module): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<tr>
<td><strong><?php echo e(ucfirst($module)); ?></strong></td>
<td><input type="radio" name="permissions[<?php echo e($module); ?>]" value="0" <?php echo e(old('permissions.' . $module, $module === 'settings' ? '0' : '1') == '0' ? 'checked' : ''); ?>></td>
<td><input type="radio" name="permissions[<?php echo e($module); ?>]" value="1" <?php echo e(old('permissions.' . $module, $module === 'settings' ? '0' : '1') == '1' ? 'checked' : ''); ?>></td>
<td><input type="radio" name="permissions[<?php echo e($module); ?>]" value="2" <?php echo e(old('permissions.' . $module, $module === 'settings' ? '0' : '1') == '2' ? 'checked' : ''); ?>></td>
</tr>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</tbody>
</table>
</div>
<div class="mt-4">
<button type="submit" class="btn btn-primary">
<i class="fas fa-save"></i> Salva
</button>
<a href="/admin/utenti" class="btn btn-secondary">Annulla</a>
</div>
</form>
</div>
</div>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('scripts'); ?>
<script>
$('#rolePresetSelect').change(function() {
if ($(this).val()) {
$('#permissionsSection').hide();
} else {
$('#permissionsSection').show();
}
});
</script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('admin.layout', array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?><?php /**PATH /var/www/html/glastree/resources/views/admin/utenti/create.blade.php ENDPATH**/ ?>