@if(userPermission('custom-links-update'))
{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'custom-links-update', 'method' => 'POST', 'enctype' => 'multipart/form-data']) }}
@endif
@lang('front_settings.footer_widget_list')
@if(session()->has('message-success'))
@lang('front_settings.operation_success_message')
@endif
@php
$tooltip = "";
if(userPermission('custom-links-update')){
$tooltip = "";
}else{
$tooltip = "You have no permission to add";
}
@endphp
{{ Form::close() }}