{!! Form::label('id', 'Id:') !!}

{!! $user->id !!}

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

{!! $user->name !!}

{!! Form::label('email', 'Correo electrónico:') !!}

{!! $user->email !!}

{!! Form::label('password', 'Contraseña:') !!}

{!! $user->password !!}

{!! Form::label('remember_token', 'Token:') !!}

{!! $user->remember_token !!}

{!! Form::label('created_at', 'Fecha de creación:') !!}

{!! $user->created_at !!}

{!! Form::label('updated_at', 'Fecha de actualización:') !!}

{!! $user->updated_at !!}

{!! Form::label('deleted_at', 'Fecha de eliminación:') !!}

{!! $user->deleted_at !!}