Based on select option set regex in text input field
Forms\Components\TextInput::make('code')
->required()
->maxLength(255), // need to add the regex for this
Forms\Components\Select::make('type')
->searchable()
->required()
->options(self::getBarcodeTypes()), Forms\Components\TextInput::make('code')
->required()
->maxLength(255), // need to add the regex for this
Forms\Components\Select::make('type')
->searchable()
->required()
->options(self::getBarcodeTypes()),