LAR_Maintenance/resources/views/livewire/host/form.blade.php

8 lines
439 B
PHP
Raw Permalink Normal View History

2024-07-30 16:13:21 +00:00
<div>
<x-form::form wire:submit.prevent="{{$action}}">
<x-form::input group-class="mb-3" type="text" wire:model="hostname" id="hostname" label="hostname"/>
2024-09-25 20:09:13 +00:00
<x-form::select group-class="mb-3" wire:model.live="host_groups" label="Select groups for Host" :options="$host_groups_available" placeholder="Select value..." multiple />
2024-07-30 16:13:21 +00:00
<x-form::button class="btn-primary" type="submit">Create</x-form::button>
</x-form::form>
2024-09-25 20:09:13 +00:00
</div>