@can('edit payment methods')
{{ __('Edit Shipping Method') }}
@endcan
@can('delete shipping methods')
{!! Form::open([
'route' => ['vanilo.admin.shipping-method.destroy', $shippingMethod],
'method' => 'DELETE',
'class' => 'float-right',
'data-confirmation-text' => __('Delete this shipping method: ":name"?', ['name' => $shippingMethod->name])
])
!!}
{!! Form::close() !!}
@endcan