lasthourcloud/resources/views/livewire/private-key/change.blade.php

15 lines
662 B
PHP
Raw Normal View History

2023-05-03 10:38:57 +00:00
<div>
<form class="flex flex-col gap-2 w-96" wire:submit.prevent='changePrivateKey'>
2023-05-03 12:09:10 +00:00
<x-inputs.input id="private_key_name" label="Name" required />
<x-inputs.input id="private_key_description" label="Longer Description" />
<x-inputs.input type="textarea" id="private_key_value" label="Private Key" required />
<x-inputs.button type="submit">
2023-05-03 10:38:57 +00:00
Submit
2023-05-03 12:09:10 +00:00
</x-inputs.button>
<x-inputs.button class="bg-red-500" confirm='Are you sure you would like to delete this private key?'
confirmAction="delete('{{ $private_key_uuid }}')">
2023-05-03 10:38:57 +00:00
Delete
2023-05-03 12:09:10 +00:00
</x-inputs.button>
2023-05-03 10:38:57 +00:00
</form>
</div>