@if(isset($editData))
{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'update_news_category',
'method' => 'POST', 'enctype' => 'multipart/form-data', 'id' => 'add-income-update']) }}
@else
@if(userPermission('store_news_category'))
{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'store_news_category',
'method' => 'POST', 'enctype' => 'multipart/form-data', 'id' => 'add-income']) }}
@endif
@endif
@if(isset($editData))
@lang('front_settings.edit_category')
@else
@lang('front_settings.add_category')
@endif
@php
$tooltip = "";
if(userPermission('store_news_category') || userPermission('edit-news-category')){
$tooltip = "";
}else{
$tooltip = "You have no permission to add";
}
@endphp
{{ Form::close() }}