# SbFieldError Displays validation error messages for a specific form field, integrating with Blazor's EditContext. ## Parameters | Parameter | Type | Default | Description | |-----------|------|---------|-------------| | For | Expression\\> | - | Lambda expression identifying the field | | Id | string? | null | Element ID (for aria-describedby association) | | Class | string? | null | Additional CSS classes | ## CSS Classes - `sb-field-error` - Base class - `sb-field-error__message` - Individual error message ## Accessibility - Use with aria-describedby on the input for screen reader support ## Examples ### Basic Usage ```razor ``` ### Multiple Fields ```razor ``` ### With Custom Styling ```razor ```