@extends('frontend.layouts.app') @section('title', 'My Account') @section('content')
@include('_message')
@if (!empty($profilePhotos) && isset($profilePhotos[0])) Profile Photo @else Default Profile @endif
@if (!empty($profilePhotos) && count($profilePhotos) > 1)
    @foreach ($profilePhotos as $index => $photo)
  • Profile Photo
  • @endforeach
@foreach ($profilePhotos as $index => $photo)
@endforeach
@else {{--

No More Photos Available

--}} @endif
Update Profile
    @php $fullName = optional($user)->name ?? 'N/A'; $nameParts = explode(' ', $fullName, 2); $firstName = $nameParts[0] ?? 'N/A'; $lastName = $nameParts[1] ?? 'N/A'; @endphp
  • First Name:

    {{ $firstName }}
  • Last Name:

    {{ $lastName }}
  • Subscription Status :

    {{ $userMembership->status ?? 'Not Applied' }}
  • Profile Created by :

    {{ $profile->profile_created_by ?? 'N/A' }}
  • Email :

    {{ $user->email ?? 'N/A' }}
  • Mobile no :

    {{ $profile->mobile_no ?? 'N/A' }}
  • Gender :

    {{ $profile->gender ?? 'N/A' }}
  • Age :

    {{ $profile && $profile->age ? $profile->age . ' Yrs' : 'N/A' }}
  • Marital Status :

    {{ $profile->marital_status ?? 'N/A' }}
  • Height :

    {{ $profile->height ?? 'N/A' }}
  • {{--
  • Weight :

    {{ $profile->weight ?? 'N/A' }}
  • Blood Group :

    {{ $profile->blood_group ?? 'N/A' }}
  • --}}
  • Looking For :

    {{ $profile->looking_for ?? 'N/A' }}
  • {{--
  • Social Media :

    @if (!empty($profile->social_media_links)) @php $socialMediaLinks = json_decode($profile->social_media_links, true); // Decode JSON to array @endphp @if (is_array($socialMediaLinks)) @foreach ($socialMediaLinks as $link) {{ $link }} @if (!$loop->last) , @endif @endforeach @else N/A @endif @else N/A @endif
  • --}}
{{-- About Myself --}} {{-- Education/Job tab --}} {{-- Family Tab --}} {{-- Partner Preferences --}} {{-- Membership --}} {{-- Password & Details --}} {{-- Interest-sent --}} {{-- Interest-received --}} {{-- Favourites --}}
@if (Auth::user()->hasRole('user') && !$profileComplete)
@if ($showPopup) @if (!$paymentStatus)

Your payment is incomplete!

Kindly complete the payment before moving to the next step.

@elseif($paymentStatus === 'Expired')

Your plan is expired!

Kindly renew the plan before moving to the next step.

@endif @else

Your profile is incomplete!

Kindly complete the profile before moving to the next step.

Complete Profile @endif
@endif @push('scripts') @endpush @endsection