html classname moved to input folder

This commit is contained in:
Burak Civan 2022-06-17 15:12:30 +03:00
parent 949a24d541
commit 7904cb18f4
2 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,6 @@
<x-form.input.textarea <x-form.input.textarea
name="{{ $name }}" name="{{ $name }}"
id="{{ $id }}" id="{{ $id }}"
class="w-full h-24 text-sm px-3 py-2.5 mt-1 rounded-lg border border-light-gray text-black placeholder-light-gray bg-white disabled:bg-gray-200 focus:outline-none focus:ring-transparent focus:border-purple"
value="{!! $value !!}" value="{!! $value !!}"
placeholder="{{ $placeholder }}" placeholder="{{ $placeholder }}"
rows="{{ $rows }}" rows="{{ $rows }}"

View File

@ -1,6 +1,7 @@
<textarea <textarea
name="{{ $name }}" name="{{ $name }}"
id="{{ $id }}" id="{{ $id }}"
class="w-full h-24 text-sm px-3 py-2.5 mt-1 rounded-lg border border-light-gray text-black placeholder-light-gray bg-white disabled:bg-gray-200 focus:outline-none focus:ring-transparent focus:border-purple"
rows="{{ $rows }}" rows="{{ $rows }}"
placeholder="{{ $placeholder }}" placeholder="{{ $placeholder }}"
@if ($disabled) @if ($disabled)