coolify/resources/views/livewire/private-key/change.blade.php
Andras Bacsai d5b332fc59 wip
2023-05-04 15:45:53 +02:00

14 lines
603 B
PHP

<div>
<form class="flex flex-col gap-2 w-96" wire:submit.prevent='changePrivateKey'>
<x-inputs.input id="private_key.name" label="Name" required />
<x-inputs.input id="private_key.description" label="Description" />
<x-inputs.input type="textarea" id="private_key.private_key" label="Private Key" required />
<x-inputs.button type="submit">
Submit
</x-inputs.button>
<x-inputs.button confirm='Are you sure you would like to delete this private key?' confirmAction="delete">
Delete
</x-inputs.button>
</form>
</div>