Akaunting/resources/views/components/documents/form/note.blade.php

14 lines
562 B
PHP
Raw Normal View History

2022-06-01 07:15:55 +00:00
<div class="sm:col-span-6 mb-8">
<x-form.group.textarea
name="notes"
label="{{ trans_choice('general.notes', 2) }}"
:value="$notes"
2022-06-01 07:15:55 +00:00
not-required
2022-06-30 15:11:24 +00:00
override="w-full text-sm px-0 py-2.5 mt-1 border-light-gray text-black placeholder-light-gray disabled:bg-gray-200 focus:outline-none focus:ring-transparent focus:border-purple border-0 bg-transparent rounded-none resize-none"
2022-06-01 07:15:55 +00:00
form-label-class="lg:text-lg"
form-group-class="border-b pb-2 mb-3.5"
rows="1"
2022-06-14 08:32:45 +00:00
textarea-auto-height
2022-06-01 07:15:55 +00:00
/>
2020-12-23 22:28:38 +00:00
</div>