dealhub/resources/views/components/chat/message-input.blade.php
kusowl 2f566cc4d8 feature(Live Support): add chat ui
- add chat ui for live support
- fix misc bugs
2026-02-09 19:07:16 +05:30

9 lines
395 B
PHP

<div class="absolute bottom-5 w-8/12 rounded-xl left-50 p-2 bg-white">
<form action="" class="flex space-x-4 items-center">
<x-ui.textarea class="flex-1" rows="1" name="message" placeholder="Enter your message...">hi</x-ui.textarea>
<x-ui.button variant="neutral" icon="">
<x-heroicon-o-paper-airplane class="w-5 h-5" />
</x-ui.button>
</form>
</div>