@extends('layouts.user.master') @section('title') @lang('translation.profile') @endsection @section('css') @endsection @section('content')
user-img

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

{{ Auth::user()->email }}
@if(Auth::user()->role == 'seller')
@lang('profile.role-seller')
@elseif(Auth::user()->role == 'buyer')
@lang('profile.role-buyer')
@elseif( Auth::user()->role == 'buyer-seller')
@lang('profile.role-buyer-seller')
@endif
@if( Auth::user()->role == 'buyer')

1324(hardcoded)

Requests Nr.

@elseif(Auth::user()->role == 'seller')

1324(hardcoded)

Requests Nr.

@elseif(Auth::user()->role == 'buyer-seller')

1324(hardcoded)

Requests Nr.

1.3K

Properties Nr.

@endif
@include('user.profile.dashboard-components.overview-profile') @include('user.profile.dashboard-components.activities') @include('user.profile.dashboard-components.property-requests') @include('user.profile.dashboard-components.properties-list')
@endsection @section('script') @endsection