@if(isset($editData))
@lang('system_settings.edit_currency')
@else
@lang('system_settings.add_currency')
@endif
@if(isset($editData))
{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'currency-update', 'method' => 'POST', 'enctype' => 'multipart/form-data']) }}
@else
@if(userPermission('currency-store'))
{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'currency-store', 'method' => 'POST', 'enctype' => 'multipart/form-data']) }}
@endif
@endif
@php
$tooltip = "";
if(userPermission('currency-store')){
$tooltip = "";
}else{
$tooltip = "You have no permission to add";
}
@endphp
{{ Form::close() }}