@include('partials.header')





@auth
User Avatar

{{ Auth::user()->name }}

{{ Auth::user()->email }}

Joined:

{{ Auth::user()->created_at->format('F j, Y') }}

Role:

{{ ucfirst(Auth::user()->role ?? 'user') }}

Logout
@csrf

اهتمامات المستخدم

{{-- List existing interests --}} @if (!empty($interests) && count($interests))
    @foreach ($interests1 as $interest)
  • مدينة: {{ $interest->city->name ?? '---' }}, حي: {{ $interest->neighborhood }}, نوع العقار: {{ $interest->property->name ?? '---' }}
    @csrf @method('DELETE')
  • @endforeach
@else

لا توجد اهتمامات حالياً.

@endif
@csrf
@else

Please log in to view your profile.

@endauth
@include('partials.footer')