I am currently working on a web application that allows users to create new categories. These categories are then inserted into a database using form post.
Each category should have an icon associated with it, and I want users to be able to select the icon from a large set provided by Bootstrap icons (). However, I am facing a challenge in finding a user-friendly way for users to choose from over 1500 icons.
My development framework is Bootstrap 5.1.3, but I haven't found a suitable method for users to view and select icons easily.
I considered using a select element with options in the form, but this presents a drawback as users can only see the name of the icon without the actual image. Unfortunately, Bootstrap does not support adding images to the options.
If anyone has any ideas on how I can implement a user-friendly icon selection feature where users can preview the icons before selecting them, I would greatly appreciate the help.
The selected icon's name should be saved in the database once chosen.
I would be thankful to receive assistance from anyone who can provide guidance on this matter :).
Thank you all in advance!