14 lines
603 B
PHP
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>
|