{{ "CHANGE_PASSWORD" | translate }}
cancel
@if( changePasswordForm.get('oldPasswordPassword')?.touched && changePasswordForm.get('oldPasswordPassword')?.errors && changePasswordForm.get('oldPasswordPassword')?.errors?.['required']){
{{'CURRENT_PASSWORD_IS_REQUIRED' | translate}}
}
@if(changePasswordForm.get('password')?.touched && changePasswordForm.get('password')?.errors ){
@if(changePasswordForm.get('password')?.errors?.['required']){ {{'PASSWORD_IS_REQUIRED' | translate}} } @if(changePasswordForm.get('password')?.errors?.['minlength']){
{{'YOU_HAVE_TO_ENTER_AT_LEAST_DIGIT' | translate}}
}
}
@if(changePasswordForm.get('confirmPassword')?.touched && changePasswordForm.get('confirmPassword')?.errors){
@if(changePasswordForm.get('confirmPassword')?.errors?.['required']){
{{'CONFIRM_PASSWORD_IS_REQUIRED' | translate}}
}
} @if( changePasswordForm.hasError('notSame')){
{{'PASSWORDS_DO_NOT_MATCH' | translate}}
}