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

{!! $user->id !!}

{!! Form::label('bond_name', 'Bond Name:') !!}

{!! $user->bond_name !!}

{!! Form::label('bond_short_description', 'Bond Short Description:') !!}

{!! $user->bond_short_description !!}

{!! Form::label('phone', 'Phone:') !!}

{!! $user->phone !!}

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

{!! $user->username !!}

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

{!! $user->email !!}

{!! Form::label('password', 'Password:') !!}

{!! $user->password !!}

{!! Form::label('device_id', 'Device Id:') !!}

{!! $user->device_id !!}

{!! Form::label('location', 'Location:') !!}

{!! $user->location !!}

{!! Form::label('profile_path', 'Profile Path:') !!}

{!! $user->profile_path !!}

{!! Form::label('dob', 'Dob:') !!}

{!! $user->dob !!}

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

{!! $user->status !!}

{!! Form::label('created_at', 'Created At:') !!}

{!! $user->created_at !!}

{!! Form::label('updated_at', 'Updated At:') !!}

{!! $user->updated_at !!}