@extends('emptyloading/layouts/default') {{-- Page title --}} @section('title') View User Details @parent @stop {{-- page level styles --}} @section('header_styles') @stop {{-- Page content --}} @section('content')

User Profile

User Profile

@if($user->pic) img @elseif($user->gender === "male") ... @elseif($user->gender === "female") ... @else ... @endif
@if($user->dob=='0000-00-00') @else @endif
@lang('users/title.first_name')

{{ $user->first_name }}

@lang('users/title.last_name')

{{ $user->last_name }}

@lang('users/title.email') {{ $user->email }}
@lang('users/title.gender') {{ $user->gender }}
@lang('users/title.dob') {{ $user->dob }}
@lang('users/title.country') {{ $user->country }}
@lang('users/title.state') {{ $user->state }}
@lang('users/title.city') {{ $user->city }}
@lang('users/title.address') {{ $user->address }}
@lang('users/title.postal') {{ $user->postal }}
@lang('users/title.status') @if($user->deleted_at) Deleted @elseif($activation = Activation::completed($user)) Activated @else Pending @endif
@lang('users/title.created_at') {!! $user->created_at->diffForHumans() !!}
{{ csrf_field() }}
 
@stop {{-- page level scripts --}} @section('footer_scripts') @stop