add new server

add new private key
check server connection
This commit is contained in:
Andras Bacsai
2023-04-26 15:38:50 +02:00
parent 2c68eed072
commit 2487dde69e
17 changed files with 145 additions and 20 deletions

View File

@@ -25,9 +25,16 @@
*
@endif
</label>
<input type={{ $type }} id={{ $id }} wire:model.defer={{ $id }}
@if ($required) required @endif @if ($disabled) disabled @endif
@if ($readonly) readOnly disabled @endif />
@if ($type === 'textarea')
<textarea type={{ $type }} id={{ $id }} wire:model.defer={{ $id }}
@if ($required) required @endif @if ($disabled) disabled @endif
@if ($readonly) readOnly disabled @endif></textarea>
@else
<input type={{ $type }} id={{ $id }} wire:model.defer={{ $id }}
@if ($required) required @endif @if ($disabled) disabled @endif
@if ($readonly) readOnly disabled @endif />
@endif
@error($id)
<div class="text-red-500">{{ $message }}</div>
@enderror