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

42 lines
2.1 KiB
PHP
Raw Normal View History

2023-06-16 10:32:29 +02:00
<div class="w-full">
2023-05-25 14:05:44 +02:00
@if ($label)
2023-07-13 13:16:24 +02:00
<label for="small-input"
class="flex items-center gap-1 mb-2 text-sm font-medium text-neutral-400">{{ $label }}
@if ($required)
<span class="text-warning">*</span>
@endif
@if ($helper)
<x-helper :helper="$helper" />
@endif
2023-05-05 09:28:00 +02:00
</label>
@endif
2023-07-13 13:16:24 +02:00
@if ($type !== 'password')
<input {{ $attributes->merge(['class' => $defaultClass]) }} @required($required)
wire:model.defer={{ $id }} wire:dirty.class.remove='text-white'
wire:dirty.class="text-black bg-warning" wire:loading.attr="disabled" type="{{ $type }}"
2023-07-25 15:23:16 +02:00
@disabled($readonly) @disabled($disabled) id="{{ $id }}" name="{{ $name }}">
2023-07-13 13:16:24 +02:00
@elseif ($type === 'password')
<div class="relative" x-data>
@if ($allowToPeak)
<div x-on:click="changePasswordFieldType"
class="absolute inset-y-0 left-0 flex items-center pl-2 cursor-pointer hover:text-white">
<svg xmlns="http://www.w3.org/2000/svg" class="w-6 h-6" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0" />
<path d="M21 12c-2.4 4 -5.4 6 -9 6c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6" />
</svg>
</div>
@endif
<input {{ $attributes->merge(['class' => $defaultClass . ' pl-10']) }} @required($required)
wire:model.defer={{ $id }} wire:dirty.class.remove='text-white'
wire:dirty.class="text-black bg-warning" wire:loading.attr="disabled" type="{{ $type }}"
2023-07-25 15:23:16 +02:00
@disabled($readonly) @disabled($disabled) id="{{ $id }}"
name="{{ $name }}">
2023-07-13 13:16:24 +02:00
</div>
@endif
@if (!$label && $helper)
<x-helper :helper="$helper" />
@endif
2023-05-17 15:46:20 +02:00
</div>