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'),