2026-08-03 21:11:54 +00:00
|
|
|
<form wire:submit="save" class="application-settings-form flex w-full flex-col gap-4">
|
|
|
|
|
<x-forms.input id="name" label="Script name" helper="A recognizable name for this reusable script." required />
|
|
|
|
|
<x-forms.textarea id="script" label="Script content" rows="12" monospace
|
|
|
|
|
helper="Cloud-config YAML or another script accepted by your provider." required />
|
|
|
|
|
<div class="flex justify-end border-t border-neutral-200 pt-4 dark:border-white/[0.08]">
|
|
|
|
|
<button type="submit"
|
2026-08-05 20:34:56 +00:00
|
|
|
class="button button-highlighted">
|
2026-08-03 21:11:54 +00:00
|
|
|
{{ $scriptId ? 'Update script' : 'Create script' }}
|
|
|
|
|
</button>
|
2025-10-11 10:42:09 +00:00
|
|
|
</div>
|
2026-07-08 10:58:27 +00:00
|
|
|
</form>
|