class="no-js"> About Us – lypo6

lab

LYPO6 Anti-Cellulite Hydro Gel is developed and brought to you by a company which is renowned manufacturer and exporters.

R.I. Ayurveda Research Labs is an associate company of Ram Lal Inder Lal (P) Limited which was incorporated in 1975 and has all the necessary statutory approvals from the Government of India and registered under Indian Companies Act 1956. The company owns Lass Naturals – the world renowned brand for natural cosmetic products.

LASS Naturals products are alternatives to mass produced chemical cosmetics. Products are free from Parabens, Sulphate,  & Mineral Oil .

Our Vision

Lass Naturals was born with the sole Objective of providing consumers, the nature based Skin care which are powerful alternatives to synthetic chemical cosmetics. Our Vision is to introduce the consumer with our rare herbs provided by nature and educate with the importance of Chemical free skin care in their life and also take care of the environment we are living in. We are manufacturing with the below standards:

Our Mission

The world of natural skin care is constantly growing and changing. We devote our efforts in providing our customers with the best and latest knowledge by making exceptional 100% chemical free(Paraben, Sulphate, Silicons, Mineral oils and so on) products which are great for their skin, Hair & body. We want to be able to share our success and give back to our customers and the community around the world.

LASS NATURALS

/** * External dependencies */ import PropTypes from 'prop-types'; /** * Internal dependencies */ import { useValidationContext } from '../../context'; import './style.scss'; export const ValidationInputError = ( { errorMessage = '', propertyName = '', elementId = '', } ) => { const { getValidationError, getValidationErrorId } = useValidationContext(); if ( ! errorMessage || typeof errorMessage !== 'string' ) { const error = getValidationError( propertyName ) || {}; if ( error.message && ! error.hidden ) { errorMessage = error.message; } else { return null; } } return (

{ errorMessage }

); }; ValidationInputError.propTypes = { errorMessage: PropTypes.string, propertyName: PropTypes.string, elementId: PropTypes.string, }; export default ValidationInputError;