lasthourcloud/resources/views/livewire/help.blade.php

12 lines
686 B
PHP
Raw Normal View History

2023-09-25 07:34:32 +00:00
<div class="flex flex-col w-11/12 max-w-5xl gap-2 modal-box">
2023-09-02 13:37:25 +00:00
<h3>How can we help?</h3>
2023-09-25 07:34:32 +00:00
<div>You can report bugs, or send us general feedback.</div>
2023-09-02 13:37:25 +00:00
<form wire:submit.prevent="submit" class="flex flex-col gap-4 pt-4">
<x-forms.input id="subject" label="Subject" placeholder="Summary of your problem."></x-forms.input>
2023-09-25 07:34:32 +00:00
<x-forms.textarea rows="10" id="description" label="Description"
2023-09-02 13:37:25 +00:00
placeholder="Please provide as much information as possible."></x-forms.textarea>
2023-09-25 07:34:32 +00:00
<div>Thank you for your feedback! 💜</div>
<x-forms.button class="w-full mt-4" type="submit" onclick="help.close()">Send Email</x-forms.button>
2023-09-02 13:37:25 +00:00
</form>
</div>