@extends('layouts.app') @section('content')

{{ auth()->user()->name }}

{{ auth()->user()->age }}, {{ auth()->user()->gender }} / {{ auth()->user()->city }}, {{ auth()->user()->country }}

{{--Date of birth--}}

{{ __('Date of birth') }}

{{ auth()->user()->dob }}

{{--Description--}}
@if (auth()->user()->description)

{{ __('About') }}

{{ auth()->user()->description }}

@endif

{{ __('Photos') }}

@if(auth()->user()->photos->count())
@foreach(auth()->user()->photos as $photo) @endforeach
@else
{{ __('You haven\'t uploaded any public photos yet.') }}
@endif @can('upload-public-photo')
@csrf
@endcan
@endsection