Input Limit

Display a character countdown by wrapping an Input Field or Input Area component with a maxlength attribute inside the Input Limit component. Append text after the counter via the optional label property.

'label' => false,
<x-inputLimit>
    <x-inputField maxlength="60" />
</x-inputLimit>
<x-inputLimit label="Zeichen übrig">
    <x-inputArea maxlength="120" />
</x-inputLimit>