Wednesday, March 8, 2017

Using Font Awesome in Laravel's Forms Submit button?

I have the following form that works as a 'Delete' button.





Is there a way how to replace button's "Delete" text with a Font Awesome icon? If I change the code to this:



it does not display the icon but just the raw version of HTML code - <i class="fa fa-minus-circle" aria-hidden="true"></i>. Is there a way to use Font Awesome with Laravel forms?



via JanisOzolins

Advertisement