# TallStackUI: Errors
> TallStackUI is a TALL Stack (Tailwind CSS, Alpine.js, Laravel, Livewire)
> component library providing 65+ Blade components for building modern web interfaces.
A validation error summary component that displays all (or filtered) Laravel validation errors in a styled list with a title, icon, optional close button, and footer slot. Automatically hides when no errors are present.
## Basic Usage
```blade
```
```blade
```
```blade
```
Hide the title and its divider, and render a numbered list:
```blade
```
Align footer content to the right with the smart `end` attribute:
```blade
Fix now
```
## Attributes
| Attribute | Type | Default | Description |
|---------------|---------------------|--------------------|-----------------------------------------------------------------------------------------------------|
| title | string\|null | Translated default | Title displayed at the top of the error box; supports `:count` placeholder for the number of errors |
| only | string\|array\|null | null | Filter to show errors for specific field names only |
| icon | string\|null | 'x-circle' | Heroicon name displayed next to the title |
| color | string\|null | 'red' | Color theme for the error box |
| close | bool | false | Shows a dismiss button to hide the error box |
| without-title | bool | false | Hides the title, icon, and the divider line between the title and the error list |
| list-numeric | bool | false | Renders the error list as an ordered (numbered) list instead of bullet points |
## Slots
| Slot | Attribute | Description |
|--------|-----------|-------------------------------------------------------------------------------------------------------|
| footer | — | Content rendered below the error list; accepts plain string or ComponentSlot |
| footer | end | When present on a ComponentSlot footer, wraps the content in a `flex justify-end` div (right-aligned) |
## Validation Constraints
- The `title` attribute cannot be empty, unless `without-title` is used.
## Soft Customization
Soft customization allows you to override default Tailwind CSS classes used by this component at runtime, either through a service provider or scoped per-instance.
### Customization
```php
TallStackUi::customize()
->errors()
->block('wrapper', 'your-tailwind-classes');
```
### Available Blocks
| Block Name | Purpose |
|---------------|-----------------------------------------------------------------|
| wrapper | Outer container with rounded corners, padding, and shadow |
| title.wrapper | Title bar flex layout |
| title.divider | Title bar bottom border and spacing (hidden by `without-title`) |
| title.text | Title text font and inline-flex alignment |
| title.icon | Title icon dimensions |
| body.wrapper | Error list container with left margin and padding |
| body.list | List spacing and text size (marker style set by `list-numeric`) |
| close | Close button icon dimensions |
| slots.footer | Footer slot top margin |