diff --git a/docs/dist/2.x/forms/fields/index.html b/docs/dist/2.x/forms/fields/index.html index 1c1401794..0f1bc4fe6 100644 --- a/docs/dist/2.x/forms/fields/index.html +++ b/docs/dist/2.x/forms/fields/index.html @@ -953,7 +953,7 @@
Range masks can be used to restrict input to a number range:
-use Filament\Forms\Components\TextInput;TextInput::make('code')->mask(fn (TextInput\Mask $mask) => $mask ->range() ->from(1) // Set the lower limit. ->to(100) // Set the upper limit. ->maxValue(100), // Pad zeros at the start of smaller numbers.)