{{ __('Profile Settings') }}

{{ __("Update your public profile, bio, and dating preferences to get better matches.") }}

@csrf
@csrf @method('patch')
@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 $interestsString = is_array($user->interests) ? implode(', ', $user->interests) : $user->interests; @endphp

These are used to calculate your Match % with other users.

@if (session('status') === 'profile-updated')

{{ __('Saved Successfully.') }}

@endif