mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-19 01:41:36 +00:00
11 lines
426 B
PHP
11 lines
426 B
PHP
<x-input-label for="content" :value="__('Content')" />
|
|
<x-textarea id="content" name="content" class="mt-1 min-h-[400px] w-full font-mono">
|
|
{{ $value }}
|
|
</x-textarea>
|
|
@error("content")
|
|
<x-input-error class="mt-2" :messages="$message" />
|
|
@enderror
|
|
|
|
<x-input-help>You can use variables like ${VARIABLE_NAME} in the script</x-input-help>
|
|
<x-input-help>The variables will be asked when executing the script</x-input-help>
|