© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
5 replies
Igor

conditional configureusing

I am using
configureUsing
configureUsing
function to set up all my text inputs to uppercase. However, this causes an issue with the reset password feature, as the email field also becomes uppercase and the database is unable to find any email due to the case sensitivity. Is it possible to set all inputs to uppercase except for the email field?
Solution
check it in the configureUsing

->configureUsing(function (TextInput $input) {
    if (! $input->isEmail()) {
        //...
    }
})
->configureUsing(function (TextInput $input) {
    if (! $input->isEmail()) {
        //...
    }
})
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources
Was this page helpful?

Similar Threads

Recent Announcements

Similar Threads

Override configureUsing ?
FilamentFFilament / ❓┊help
16mo ago
Override Table::configureUsing
FilamentFFilament / ❓┊help
6mo ago
configureUsing (global translations)
FilamentFFilament / ❓┊help
3y ago
use `configureUsing` to avoid repetition
FilamentFFilament / ❓┊help
16mo ago