{!! Form::label('name', 'Nombre:') !!}

{{ $user->name }}

{!! Form::label('email', 'Email:') !!}

{{ $user->email }}

{!! Form::label('username', 'Username:') !!}

{{ $user->username }}

{!! Form::label('address', 'Direccion:') !!}

{{ $user->address }}

{!! Form::label('description', 'Descripcion:') !!}

{!! $user->description !!}

{!! Form::label('status', 'Estatus:') !!}

@php if($user->status==config('constants.STATUS.ACTIVE')) echo ''.$user->status.''; else echo ''.$user->status.''; @endphp

{!! Form::label('created_at', 'Creado:') !!}

{{ formatDateTime($user->created_at) }}

{!! Form::label('updated_at', 'Actualizado:') !!}

{{ formatDateTime($user->updated_at) }}