Search code examples
htmlcsslaravellaravel-5laravelcollective

Add icon to Laravelcollective submit button


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!


Solution

  • 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'] )  }}