Components

Alert

Displays a callout for user attention.

php artisan blatui:add alert
<x-ui.alert class="max-w-md">
    <x-lucide-circle-check />
    <x-ui.alert-title>Success! Your changes have been saved</x-ui.alert-title>
    <x-ui.alert-description>This is an alert with icon, title and description.</x-ui.alert-description>
</x-ui.alert>

Destructive

<x-ui.alert variant="destructive" class="max-w-md">
    <x-lucide-circle-alert />
    <x-ui.alert-title>Unable to process your payment.</x-ui.alert-title>
    <x-ui.alert-description>Please verify your billing information and try again.</x-ui.alert-description>
</x-ui.alert>