v1.0.0 initial release

This commit is contained in:
samy
2025-06-13 10:48:20 -10:00
commit 0c8f70bca5
3333 changed files with 189946 additions and 0 deletions
@@ -0,0 +1,27 @@
@php
$isLivewire = sk_is_livewire($attributes);
@endphp
<div class="form-control w-full mb-4 {{ $gridLayout }} @if($readonly) cursor-not-allowed @endif"">
@if ($label)
<x-sk::form.label :for="$id" :required="$required">{{ $label }}</x-sk::form.label>
@endif
<textarea
id="{{ $id }}"
name="{{ $name }}"
placeholder="{{ $placeholder }}"
rows="{{ $rows }}"
@if($required) required @endif
@if($disabled && $isLivewire) readonly
@elseif($disabled) disabled @endif
@if($readonly) readonly @endif
{{ $attributes->merge(['class' => $inputClasses]) }}
>@unless($isLivewire){{ $resolvedValue }}@endunless</textarea>
@if ($help)
<x-sk::form.help>{{ $help }}</x-sk::form.help>
@endif
<x-sk::form.error :name="$name" />
</div>