coolify/resources/views/livewire/destination/form.blade.php

19 lines
823 B
PHP
Raw Normal View History

2023-05-04 22:39:40 +02:00
<div x-data="{ deleteDestination: false }">
<x-naked-modal show="deleteDestination" message='Are you sure you would like to delete this destination?' />
2023-05-04 10:45:09 +02:00
<form class="flex flex-col gap-4" wire:submit.prevent='submit'>
<x-inputs.input id="destination.name" label="Name" />
<x-inputs.input id="destination.server.ip" label="Server IP" readonly />
@if ($destination->getMorphClass() === 'App\Models\StandaloneDocker')
<x-inputs.input id="destination.network" label="Docker Network" readonly />
@endif
<div>
2023-05-18 13:26:35 +02:00
<x-inputs.button type="submit">
2023-05-16 11:02:51 +02:00
Save
2023-05-04 10:45:09 +02:00
</x-inputs.button>
2023-05-18 13:26:35 +02:00
<x-inputs.button x-on:click.prevent="deleteDestination = true">
2023-05-04 10:45:09 +02:00
Delete
</x-inputs.button>
</div>
</form>
</div>