diff --git a/api/app/Http/Requests/Api/V1/VolunteerRegistrationRequest.php b/api/app/Http/Requests/Api/V1/VolunteerRegistrationRequest.php
index d31384d1..73c20d2f 100644
--- a/api/app/Http/Requests/Api/V1/VolunteerRegistrationRequest.php
+++ b/api/app/Http/Requests/Api/V1/VolunteerRegistrationRequest.php
@@ -40,7 +40,6 @@ final class VolunteerRegistrationRequest extends FormRequest
'tshirt_size' => ['nullable', 'string', 'in:XS,S,M,L,XL,XXL,XXXL'],
'first_aid' => ['nullable', 'boolean'],
'allergies' => ['nullable', 'string', 'max:500'],
- 'access_requirements' => ['nullable', 'string', 'max:500'],
'driving_licence' => ['nullable', 'boolean'],
'motivation' => ['nullable', 'string', 'max:1000'],
diff --git a/api/app/Services/VolunteerRegistrationService.php b/api/app/Services/VolunteerRegistrationService.php
index 7f50a865..5262426d 100644
--- a/api/app/Services/VolunteerRegistrationService.php
+++ b/api/app/Services/VolunteerRegistrationService.php
@@ -59,7 +59,6 @@ final class VolunteerRegistrationService
'tshirt_size' => $validated['tshirt_size'] ?? null,
'first_aid' => $validated['first_aid'] ?? false,
'allergies' => $validated['allergies'] ?? null,
- 'access_requirements' => $validated['access_requirements'] ?? null,
'driving_licence' => $validated['driving_licence'] ?? false,
'motivation' => $validated['motivation'] ?? null,
'motivation_other' => $validated['motivation_other'] ?? null,
diff --git a/apps/portal/src/pages/register/[eventSlug].vue b/apps/portal/src/pages/register/[eventSlug].vue
index 394492d4..2cfd463f 100644
--- a/apps/portal/src/pages/register/[eventSlug].vue
+++ b/apps/portal/src/pages/register/[eventSlug].vue
@@ -45,7 +45,6 @@ const { errors, defineField, validateField, setFieldValue } = useForm({
tshirt_size: '',
first_aid: false,
allergies: '',
- access_requirements: '',
driving_licence: false,
motivation: '',
motivation_other: '',
@@ -60,7 +59,6 @@ const [phone] = defineField('phone')
const [tshirtSize] = defineField('tshirt_size')
const [firstAid] = defineField('first_aid')
const [allergies] = defineField('allergies')
-const [accessRequirements] = defineField('access_requirements')
const [drivingLicence] = defineField('driving_licence')
const [motivation] = defineField('motivation')
const [motivationOther] = defineField('motivation_other')
@@ -159,11 +157,11 @@ const formattedDates = computed(() => {
})
// Step field mapping for validation (0-based)
-type FormField = 'first_name' | 'last_name' | 'date_of_birth' | 'email' | 'phone' | 'tshirt_size' | 'first_aid' | 'allergies' | 'access_requirements' | 'driving_licence' | 'motivation' | 'motivation_other'
+type FormField = 'first_name' | 'last_name' | 'date_of_birth' | 'email' | 'phone' | 'tshirt_size' | 'first_aid' | 'allergies' | 'driving_licence' | 'motivation' | 'motivation_other'
const stepFields: Record
+ Vul deze gegevens zorgvuldig in: we gebruiken ze om alle informatie over het evenement naar je te versturen. + Je e-mailadres is ook je gebruikersnaam voor Crewli, het systeem waar je straks alle informatie terugvindt. +
+ +