From 097c33c4b0ce6ddcc7fc0cfd941ffdcc334e5f15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anna-Sara=20S=C3=A9lea?= Date: Wed, 25 Feb 2026 07:23:16 +0100 Subject: [PATCH] Fix with tables --- .../Resources/Participants/Schemas/ParticipantForm.php | 1 - app/Filament/Resources/Volunteers/Schemas/VolunteerForm.php | 6 ++++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/app/Filament/Resources/Participants/Schemas/ParticipantForm.php b/app/Filament/Resources/Participants/Schemas/ParticipantForm.php index 12dbab8..9fb8a41 100644 --- a/app/Filament/Resources/Participants/Schemas/ParticipantForm.php +++ b/app/Filament/Resources/Participants/Schemas/ParticipantForm.php @@ -73,7 +73,6 @@ class ParticipantForm TextInput::make('surname') ->required(), TextInput::make('grade') - ->integer() ->columnSpan('full') ->required(), TextInput::make('phone') diff --git a/app/Filament/Resources/Volunteers/Schemas/VolunteerForm.php b/app/Filament/Resources/Volunteers/Schemas/VolunteerForm.php index 031e5c7..83938f6 100644 --- a/app/Filament/Resources/Volunteers/Schemas/VolunteerForm.php +++ b/app/Filament/Resources/Volunteers/Schemas/VolunteerForm.php @@ -39,9 +39,11 @@ class VolunteerForm ->required() ->columnSpan('full') ->options([ - 'Städ' => 'Städ', + 'Kiosk & Kök' => 'Kiosk & Kök', 'Säkerhet' => 'Säkerhet', - 'Kiosk' => 'Kiosk', + 'Städning' => 'Städning', + 'Entré & Incheckning' => 'Entré & Incheckning', + 'Teknisk Support' => 'Teknisk Support' ]), Textarea::make('comment') ->columnSpan('full'),