Fix with tables

This commit is contained in:
Anna-Sara Sélea 2026-02-25 07:23:16 +01:00
parent 573b41b4b2
commit 097c33c4b0
2 changed files with 4 additions and 3 deletions

View file

@ -73,7 +73,6 @@ class ParticipantForm
TextInput::make('surname') TextInput::make('surname')
->required(), ->required(),
TextInput::make('grade') TextInput::make('grade')
->integer()
->columnSpan('full') ->columnSpan('full')
->required(), ->required(),
TextInput::make('phone') TextInput::make('phone')

View file

@ -39,9 +39,11 @@ class VolunteerForm
->required() ->required()
->columnSpan('full') ->columnSpan('full')
->options([ ->options([
'Städ' => 'Städ', 'Kiosk & Kök' => 'Kiosk & Kök',
'Säkerhet' => 'Säkerhet', 'Säkerhet' => 'Säkerhet',
'Kiosk' => 'Kiosk', 'Städning' => 'Städning',
'Entré & Incheckning' => 'Entré & Incheckning',
'Teknisk Support' => 'Teknisk Support'
]), ]),
Textarea::make('comment') Textarea::make('comment')
->columnSpan('full'), ->columnSpan('full'),