Display fa icon as a button text in laravel form

@can('user-delete')
{!! Form::open(['method' => 'DELETE','route' => ['users.destroy', $user->id],'style'=>'display:inline']) !!}
{!! Form::submit('Delete', ['class' => 'btn btn-default']) !!}
{!! Form::close() !!}
@endcan

I need to display fa icon instead of DELETE text in the button,

<i class="fas fa-trash-alt"></i>

How can I display this fa icon in that button.

I'm using laravel and bootstrap 4.



from Newest questions tagged laravel-5 - Stack Overflow https://ift.tt/2xUCShg
via IFTTT

تعليقات

المشاركات الشائعة من هذه المدونة

I am unable to figure out how to create payment collection request, after a form has been submitted in laravel

laravel, mysql transaction not working after failed one time