coolify/resources/views/components/inputs/input.blade.php

53 lines
2.2 KiB
PHP
Raw Normal View History

2023-05-03 14:09:10 +02:00
@props([
2023-05-05 10:13:43 +02:00
'id' => $attributes->has('id') || $attributes->has('label'),
2023-05-18 13:26:35 +02:00
'type' => $attributes->get('type') ?? 'text',
'required' => null,
2023-05-05 10:13:43 +02:00
'label' => $attributes->has('label'),
2023-05-17 15:46:20 +02:00
'helper' => $attributes->has('helper'),
2023-05-05 10:13:43 +02:00
'noLabel' => $attributes->has('noLabel'),
'noDirty' => $attributes->has('noDirty'),
2023-05-18 13:26:35 +02:00
'disabled' => null,
2023-05-03 14:09:10 +02:00
])
2023-05-18 13:26:35 +02:00
<div {{ $attributes->merge(['class' => 'w-full form-control']) }}>
2023-05-05 09:28:00 +02:00
@if (!$noLabel)
2023-05-17 15:46:20 +02:00
<label class="label">
<span class="label-text">
@if ($label)
{{ $label }}
@else
{{ $id }}
@endif
@if ($required)
<span class="text-warning">*</span>
@endif
@if ($helper)
2023-05-18 13:49:49 +02:00
<div class="-mb-1 dropdown dropdown-right">
<label tabindex="0" class="cursor-pointer text-warning">
2023-05-17 15:46:20 +02:00
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
2023-05-18 13:49:49 +02:00
class="w-4 h-4 stroke-current">
2023-05-17 15:46:20 +02:00
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</label>
<div tabindex="0"
2023-05-18 15:12:26 +02:00
class="border-2 shadow w-96 border-coolgray-500 card compact dropdown-content bg-coolgray-200">
2023-05-17 15:46:20 +02:00
<div class="card-body">
2023-05-18 13:49:49 +02:00
{!! $helper !!}
2023-05-17 15:46:20 +02:00
</div>
</div>
</div>
@endif
</span>
2023-05-05 09:28:00 +02:00
</label>
@endif
2023-05-18 13:26:35 +02:00
<input {{ $attributes }} type={{ $type }} name={{ $id }} wire:model.defer={{ $id }}
@if ($disabled !== null) disabled @endif @if ($required !== null) required @endif
2023-05-17 15:46:20 +02:00
@if (!$noDirty) wire:dirty.class="input-warning" @endif />
2023-04-25 14:43:35 +02:00
@error($id)
2023-05-17 15:46:20 +02:00
<label class="label">
<span class="text-red-500 label-text-alt">{{ $message }}</span>
</label>
2023-04-25 14:43:35 +02:00
@enderror
2023-05-17 15:46:20 +02:00
</div>