{{ $language === 'bn' ? 'আপনার সম্পর্কে তথ্য' : 'About You' }}
{{ $language === 'bn' ? 'আপনার সম্পর্কে কিছু তথ্য দিন। এটি সম্পূর্ণ গোপনীয়।' : 'Please share a few details about yourself. All information is kept private.' }}
{{-- Privacy notice --}}
{{ $language === 'bn' ? 'আপনার তথ্য সম্পূর্ণ গোপনীয় থাকবে এবং শুধুমাত্র গবেষণার উদ্দেশ্যে ব্যবহৃত হবে।' : 'Your information is kept strictly private and used only for research purposes.' }}
{{-- Validation errors --}} @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Name & Phone (required) --}}
{{ $language === 'bn' ? 'প্রাথমিক তথ্য' : 'Basic Info' }}
@error('respondent_name'){{ $message }}@enderror
@error('respondent_phone'){{ $message }}@enderror
{{-- Age & Gender (optional) --}}
{{-- Occupation & Location --}}
{{ $language === 'bn' ? 'অবস্থান ও পেশা' : 'Location & Occupation' }}
@error('location'){{ $message }}@enderror
{{-- Email (optional) --}}
@error('email'){{ $message }}@enderror
{{-- How did you find us --}}
{{ $language === 'bn' ? 'কীভাবে জানলেন?' : 'How Did You Find Us?' }}
@error('relationship_source'){{ $message }}@enderror
{{-- Consent --}}
{{ $language === 'bn' ? 'সম্মতি' : 'Consent' }}
@error('consent') {{ $message }} @enderror
{{-- Submit button (only shown when info is AFTER questions) --}} @if(!($infoPlacement ?? 'after' === 'before')) @endif