@extends('layouts.app') @section('title') @if( ! empty($title)) {{ $title }} | @endif @parent @endsection @section('content')
@lang('app.name') | {{ $user->name }} |
---|---|
@lang('app.user_name') | {{ $user->user_name }} |
@lang('app.email') | {{ $user->email }} |
@lang('app.gender') | {{ ucfirst($user->gender) }} |
@lang('app.mobile') | {{ $user->mobile }} |
@lang('app.phone') | {{ $user->phone }} |
@lang('app.address') | {{ $user->address }} |
@lang('app.country') | @if($user->country) {{ $user->country->country_name }} @endif |
@lang('app.website') | {{ $user->website }} |
@lang('app.created_at') | {{ $user->signed_up_datetime() }} |
@lang('app.status') | {{ $user->status_context() }} |