coolify/resources/views/livewire/destination/new/docker.blade.php

21 lines
912 B
PHP
Raw Normal View History

2023-05-02 12:47:52 +02:00
<div>
2023-06-07 17:11:21 +02:00
<h1>Create a new Destination</h1>
2023-08-14 14:00:10 +02:00
<div class="subtitle ">Destinations are used to segregate resources by network.</div>
2023-12-07 19:06:32 +01:00
<form class="flex flex-col gap-4" wire:submit='submit'>
2023-05-22 12:09:24 +02:00
<div class="flex gap-2">
2023-08-11 20:19:42 +02:00
<x-forms.input id="name" label="Name" required />
<x-forms.input id="network" label="Network" required />
2023-05-22 12:09:24 +02:00
</div>
2023-07-28 13:31:47 +02:00
<x-forms.select id="server_id" label="Select a server" required wire:change="generate_name">
2023-06-06 11:35:50 +02:00
<option disabled>Select a server</option>
2023-05-04 10:45:09 +02:00
@foreach ($servers as $server)
<option value="{{ $server->id }}">{{ $server->name }}</option>
@endforeach
2023-05-25 14:05:44 +02:00
</x-forms.select>
2023-12-18 17:13:22 +01:00
{{-- <x-forms.checkbox type="checkbox" id="is_swarm" label="Is it a Swarm network?" /> --}}
2023-06-07 17:11:21 +02:00
<x-forms.button type="submit">
Save Destination
</x-forms.button>
2023-05-02 12:47:52 +02:00
</form>
</div>