Add icon to Laravelcollective submit button

Ariando Miller picture Ariando Miller · Dec 18, 2016 · Viewed 14.5k times · Source

I'm trying to add a trash icon to submit button and I tried this :

{!! Form::submit('', ['class' => 'btn btn-warning btn-sm fa fa-trash']) !!}

but the icon won't show. How to solve this ? thanks in advance!

Answer

misterdebug picture misterdebug · Dec 18, 2016

Try to use Form::button instead of Form::submit:

{{ Form::button('<i class="fa fa-trash"></i>', ['type' => 'submit', 'class' => 'btn btn-warning btn-sm'] )  }}