Add icon to Laravelcollective submit button

后端 未结 3 939
滥情空心
滥情空心 2020-12-31 03:20

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


        
3条回答
  •  無奈伤痛
    2020-12-31 03:47

    You can try too with:

    Example to input type button:

    {{ FORM::button(' Text button',['class'=>'button button-red','type'=>'button','id'=>'id-button']) }}
    

提交回复
热议问题