{{ __('Profile') }}

@if ($profile->exists && ($profileComplete && $hasPhoto))
@endif
{{-- Onboarding banner: shown when the user has no profile yet --}} @if (!$profileComplete || !$hasPhoto)

{{ __('Welcome to ND-Link!') }}

{{ __('Add your required info and at least 1 photo to make your profile visible to others.') }}

{{ __('Do it later') }}
@endif {{-- Restore banner: shown by JS when unsaved draft was found in localStorage --}}
{{-- ── Profile type indicator ──────────────────────────────────── --}}

{{ __('I want to make a profile about…') }} {{ match($profile->profile_type ?? 'self') { 'parent' => __('My child'), 'partner' => __('My partner'), default => __('Myself'), } }}

{{ __('Change') }}
{{-- ── Required section label ─────────────────────────────────── --}}

{{ __('Required to publish your profile') }}

{{-- 1. Profile Information (Required) --}}
@include('profile.partials.update-profile-information-form', [ 'profile' => $profile, ])
{{-- 2. Profile Photos (required: at least 1) --}}
@include('profile.partials.profile-photos', [ 'photos' => $photos, 'profile' => $profile, ])
{{-- ── Optional section label ─────────────────────────────────── --}}

{{ __('Optional info') }}

{{-- 3. Profile Information Part 2 (Optional) --}}
@include('profile.partials.update-profile-optional-form', [ 'profile' => $profile, ])
{{-- 4. Video Introduction
@include('profile.partials.video-upload', ['video' => $video])
--}}
@push('bottom-bar-buttons') {{-- Cancel / Save / View profile --}}
@if ($profile->exists) @endif
@endpush @push('scripts') @endpush