{{ __('Profile Information') }}
{{ __('Part 1 - Required Information') }}

{{ __('This information is required to create your profile and make it visible to other users. You can update it at any time.') }}

@csrf
@csrf @method('patch')
#{{ $user->id }}
@if ($user instanceof \Illuminate\Contracts\Auth\MustVerifyEmail && !$user->hasVerifiedEmail())

{{ __('Your email address is unverified.') }}

@if (session('status') === 'verification-link-sent')

{{ __('A new verification link has been sent to your email address.') }}

@endif
@endif
@php $profileType = $profile->profile_type ?? 'self'; @endphp
{{-- flatpickr renders a calendar with dd/mm/yyyy display; the hidden input keeps yyyy-mm-dd for server validation --}}
@php $countryOptions = \App\Helpers\CountryHelper::options(); @endphp
@php $langs = ['' => __('— select —'), 'nl' => '🇳🇱 NL', 'en' => '🇬🇧 EN', 'fr' => '🇫🇷 FR', 'de' => '🇩🇪 DE', 'es' => '🇪🇸 ES']; @endphp
{{-- Terms & Privacy consent --}} @php $consentCurrent = $user->terms_accepted_at && $user->terms_version === config('legal.terms_version') && $user->privacy_version === config('legal.privacy_version'); @endphp @if ($consentCurrent)

✓ {{ __('Terms & Conditions') }} v{{ $user->terms_version }} & {{ __('Privacy Statement') }} v{{ $user->privacy_version }} — {{ __('accepted on') }} {{ $user->terms_accepted_at->format('d/m/Y') }}

@else
@endif {{-- Hidden submit trigger voor de centrale Save-knop in de bottom bar --}}
@push('scripts') @endpush