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

11 lines
505 B
PHP
Raw Normal View History

2023-06-05 12:07:55 +02:00
<form wire:submit.prevent='submit' class="flex flex-col w-full px-2">
2023-05-31 10:19:29 +02:00
<div class="flex items-end gap-2">
2023-05-25 14:05:44 +02:00
<x-forms.input placeholder="pv-name" noDirty id="name" label="Name" required />
<x-forms.input placeholder="/root" noDirty id="host_path" label="Source Path" />
<x-forms.input placeholder="/tmp/root" noDirty id="mount_path" label="Destination Path" required />
<x-forms.button type="submit">
2023-06-05 12:07:55 +02:00
Add New Volume
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>