coolify/resources/views/livewire/project/application/storages/show.blade.php

18 lines
799 B
PHP
Raw Normal View History

2023-05-05 12:08:38 +02:00
<div x-data="{ deleteStorage: false }">
2023-06-16 15:56:25 +02:00
<x-naked-modal show="deleteStorage" title="Delete Storage"
message='This storage will be deleted. It is not reversible. <br>Please think again.' />
2023-06-15 09:15:41 +02:00
<form wire:submit.prevent='submit' class="flex flex-col gap-2 xl:items-end xl:flex-row">
<x-forms.input id="storage.name" label="Name" required />
<x-forms.input id="storage.host_path" label="Source Path" />
<x-forms.input id="storage.mount_path" label="Destination Path" required />
<div class="flex gap-2">
2023-05-25 14:05:44 +02:00
<x-forms.button type="submit">
2023-05-17 12:14:18 +02:00
Update
2023-05-25 14:05:44 +02:00
</x-forms.button>
<x-forms.button x-on:click.prevent="deleteStorage = true">
2023-05-17 12:14:18 +02:00
Delete
2023-05-25 14:05:44 +02:00
</x-forms.button>
2023-05-17 12:14:18 +02:00
</div>
2023-05-05 12:08:38 +02:00
</form>
</div>