@if(form.get('score')?.touched && form.get('score')?.hasError('required')) {
{{ "SCORE_IS_REQUIRED" | translate }}
}
@if(form.get('score')?.touched && form.get('score')?.hasError('pattern')) {
{{ "ONLY_WHOLE_NUMBERS_GREATER_THAN_OR_EQUAL_TO_1_ARE_ALLOWED" | translate }}
}
@if(form.get('score')?.touched && form.get('score')?.hasError('max')) {
{{ "INVALID_SCORE"}} : {{"MAXIMUM_ALLOWED_IS" | translate }}
{{ question.maxScore || 0 }}
}