@extends('layouts.app') @section('page-title', $user->present()->nameOrEmail) @section('content')

{{ $user->present()->nameOrEmail }} @lang('app.user_details')

@lang('app.details')
image
{{ $user->present()->name }}
@if ($socialNetworks)
@if ($socialNetworks->facebook) @endif @if ($socialNetworks->twitter) @endif @if ($socialNetworks->google_plus) @endif @if ($socialNetworks->linked_in) @endif @if ($socialNetworks->skype) @endif @if ($socialNetworks->dribbble) @endif
@endif
@if ($user->phone) @endif @if ($socialNetworks && $socialNetworks->skype) @endif
@lang('app.contact_informations')
@lang('app.email') {{ $user->email }}
@lang('app.phone') {{ $user->phone }}
Skype {{ $socialNetworks->skype }}
@lang('app.additional_informations')
@lang('app.birth') {{ $user->present()->birthday }}
@lang('app.address') {{ $user->present()->fullAddress }}
@lang('app.last_logged_in')' {{ $user->present()->lastLogin }}
@lang('app.latest_activity')
@foreach($userActivities as $activity) @endforeach
@lang('app.action') @lang('app.date')
{{ $activity->description }} {{ $activity->created_at }}
@stop