Components
Prompt Input
An AI chat composer with an auto-growing textarea, attach and send buttons, and ⌘↵ to send.
php artisan blatui:add prompt-input
<div class="w-full max-w-xl">
<x-ui.prompt-input aria-label="Message" placeholder="Send a message…" />
</div>
Disabled
<div class="w-full max-w-xl">
<x-ui.prompt-input :disabled="true" :attachable="true" placeholder="Composer is disabled" />
</div>
With Attachment
<div class="w-full max-w-xl">
<x-ui.prompt-input :attachable="true" placeholder="Ask anything…" />
</div>