@extends('frontend.layouts.master') @section('content')
Chat now

{{ $user->name }}

100 viewers Available online
  • City: {{ $user->profile->city->name }}
  • Age: {{ $user->profile->age }}
  • Height: {{ $user->profile->height }}
  • Job: {{ $user->profile->career->type }}

About

It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.

Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text.

@if ($user->profile->images->count() > 0) @endif

Contact info

  • Phone:{{ $user->phone }}
  • Email:{{ $user->email }}
  • Address: {{ $user->profile->address }}

Personal information

  • Name: {{ $user->name }}
  • Father's name: {{ $user->profile->fathers_name }}
  • Age: {{ $user->profile->age }}
  • Date of Birth: {{ Carbon\Carbon::parse($user->profile->birth_date)->format('d M, Y') }}
  • Height: {{ $user->profile->height }}
  • Weight: {{ $user->profile->weight }}kg
  • Degree: {{ $user->profile->career->degree }}
  • Religion: Any
  • Profession: {{ $user->profile->career->type }}
  • Company: {{ $user->profile->career->company_name }}
  • Position: {{ $user->profile->career->position }}
  • Salary: {{ $user->profile->career->salary }}
@if ($user->profile->hobbies->count() > 0)

Hobbies

    @forelse($user->profile->hobbies as $hobby)
  • {{ $hobby->hobby->name }}
  • @empty @endforelse
@endif

Tell us your Needs

Tell us what kind of service or experts you are looking.

Register for free

Related profiles

    @foreach ($related_users as $related)
  • {{ $related->profile->age }} Years old
    {{ $related->name }}
    City: {{ $related->profile->city->name }}
  • @endforeach
@push('script') @endpush @endsection