Initial commit
This commit is contained in:
12
resources/views/livewire/description.blade.php
Normal file
12
resources/views/livewire/description.blade.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user