Showing a success message after form validation and before submission
Hi guys, consider this field:
This succesfully shows an error message if the repository already exists, but I'd also like to show a green message if the repo name is ok! Also, bonus points if someone knows how to add some sort of spinner to the form while it's off doing its validation...
3 Replies
add some sort of spinner to the form while it's off doing its validationpeek at https://filamentphp.com/docs/3.x/support/blade-components/loading-indicator
As for displaying a green status message, perhaps you could inject it into the beginning of the
helperText()
upon success?
Here's a way that awcodes did some status messaging into the helperText: https://gist.github.com/awcodes/9784de531aea8e3bdba772a55958a999
I wonder if that gives some inspiration for your inquiry.Thanks for the feedback, that's a great place for me to start - will have a look into it shortly!