简体   繁体   English

将图标添加到 Laravelcollective 提交按钮

[英]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!提前致谢!

尝试使用 Form::button 而不是 Form::submit:

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

You can try too with:您也可以尝试:

Example to input type button:输入类型按钮的示例:

{{ FORM::button('<i class="glyphicon glyphicon-trash" aria-hidden="true"></i> Text button',['class'=>'button button-red','type'=>'button','id'=>'id-button']) }}

there are not possible try it laravel collective form given very competition鉴于竞争激烈,不可能尝试 Laravel 集体形式

<button class='btn btn-primary' type='submit' value='submit'>
<i class='fa fa-save'> </i> Save

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM