13 lines
609 B
PHP
13 lines
609 B
PHP
<div x-data class="max-w-md mt-4">
|
|
|
|
<label for="description" class="mt-2 block text-sm font-medium text-theme-primary"> {{ __('Description') }}</label>
|
|
<textarea
|
|
wire:model.live.debounce.800ms="description"
|
|
x-on:blur="$wire.checkRequired()"
|
|
placeholder=" {{ __('Payment description') }}"
|
|
rows="5"
|
|
class="mt-1 placeholder-gray-300 focus:ring-gray-500 focus:border-theme-muted block w-full shadow-sm sm:text-sm border-theme-border rounded-md @error('description') is-invalid @enderror" name="description" value="{{ old('description') }}">
|
|
</textarea>
|
|
|
|
</div>
|