© 2026 Hedgehog Software, LLC
TextInput::make('phone') ->disableLabel() ->label('Phone Number') ->placeholder('Phone Number') ->validationAttribute('Phone Number') ->minLength(10) ->maxLength(14) ->mask('(999) 999-9999') ->stripCharacters(['(', ')', ' ', '-']) ->numeric() ->rules([ new PhoneNumberRule, 'doesnt_start_with:1']) ->required() ->validationMessages([ 'doesnt_start_with' => 'Phone Number cannot begin with 1.', ]),
PhoneInput::make('primary_phone')