This commit is contained in:
2026-06-23 11:12:28 +02:00
parent f2ea5e160b
commit 557bf3fcdf
2458 changed files with 323084 additions and 316 deletions
+8
View File
@@ -36,6 +36,14 @@
<label>Nome *</label>
<input type="text" name="nome" class="form-control" value="{{ old('nome', $gruppo->nome) }}" required>
</div>
<div class="form-group">
<label>Anno Fondazione</label>
<input type="number" name="anno_fondazione" class="form-control @error('anno_fondazione') is-invalid @enderror"
value="{{ old('anno_fondazione', $gruppo->anno_fondazione) }}" min="1800" max="{{ date('Y') + 1 }}" step="1">
@error('anno_fondazione')
<span class="invalid-feedback">{{ $message }}</span>
@enderror
</div>
<div class="form-group">
<label>Gruppo Padre</label>
<select name="parent_id" class="form-control">