Form errors display directives for Angular
npm install @ildug/ngx-errors

Form errors display directives for Angular.
Updated to Angular 18.
try a demo
Install via package manager or fork this project ("projects/ngx-errors/src")
NPM
```
npm install @ildug/ngx-errors
Import the module in your angular component. In your module app.module.ts
` typescript
...
@Component({
...,
standalone: true,
imports: [..., ReactiveFormsModule, NgxErrorsModule],
...
})
export class AppComponent {
form = new FormGroup({
"email": new FormControl(null, [Validators.required, Validators.email])
});
}
`
Add the directive to an element where errors will be diplayed.
dagErrors is the name of the reference input element.
dagError is the error name issued by Angular Validator
when indicates when the error message will be shown.
In my.component.html
` html``