2023-05-17 10:14:18 +00:00
|
|
|
<form wire:submit.prevent='submit' class="flex flex-col px-2 pt-10 max-w-fit">
|
|
|
|
<div class="flex gap-2">
|
|
|
|
<x-inputs.input noDirty id="name" label="Name" required />
|
|
|
|
<x-inputs.input noDirty id="host_path" label="Source Path" />
|
|
|
|
<x-inputs.input noDirty id="mount_path" label="Destination Path" required />
|
|
|
|
</div>
|
|
|
|
<div class="pt-2">
|
2023-05-18 11:26:35 +00:00
|
|
|
<x-inputs.button type="submit">
|
2023-05-17 10:14:18 +00:00
|
|
|
Add
|
|
|
|
</x-inputs.button>
|
|
|
|
</div>
|
2023-05-05 10:08:38 +00:00
|
|
|
</form>
|