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

11 lines
443 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='createPrivateKey'>
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>
2023-05-03 10:38:57 +00:00
</form>
</div>