2024-06-08 18:18:17 +02:00

11 lines
416 B
PHP

<x-input-label for="content" :value="__('Content')" />
<x-textarea id="content" name="content" class="mt-1 min-h-[400px] w-full">
{{ $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>