{{ __('My account') }}

{{-- Account info --}}
@include('profile.partials.account-info-form', ['user' => $user])
{{-- Update Password --}}
@include('profile.partials.update-password-form')
{{-- Download My Data --}}

{{ __('Download My Data') }}

{{ __('Download a copy of all personal data we store about you (GDPR Art. 20 — right to data portability). The export contains your account details, profile information, and photo metadata in CSV format.') }}

{{ __('Download CSV') }}
{{-- Blocked users — hidden for PRO and ORG accounts --}} @if (!$user->is_pro)

{{ __('Blocked users') }}

{{ __('Blocked users cannot see your profile and will not appear in your search results.') }}

@if ($blocks->isEmpty())

{{ __('You have not blocked anyone.') }}

@else
    @foreach ($blocks as $block) @php $other = $block->blocked; @endphp
  • {{-- Avatar --}} @if ($other?->photos->first()) {{ $other->name }} @elseif ($other)
    {{ mb_substr($other->name, 0, 1) }}
    @else
    @endif {{-- Name + profile number --}}

    {{ $other?->name ?? __('Deleted account') }}

    @if ($other?->profile)

    #{{ $other->profile->id }}

    @endif
    @csrf @method('DELETE')
  • @endforeach
@endif
@endif {{-- Delete Account --}}
@include('profile.partials.delete-user-form')
@push('bottom-bar-buttons')
@endpush @push('scripts') @endpush