@if (userPermission('update-twilio-data'))
{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'update-twilio-data', 'id' => 'twilio_form']) }}
@endif
@php
$tooltip = '';
if (userPermission('update-twilio-data')) {
$tooltip = '';
} else {
$tooltip = 'You have no permission to add';
}
@endphp
{{ Form::close() }}
@if (userPermission('update-msg91-data'))
{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'update-msg91-data', 'method' => 'POST']) }}
@endif
@php
$tooltip = '';
if (userPermission('update-msg91-data')) {
$tooltip = '';
} else {
$tooltip = 'You have no permission to add';
}
@endphp
{{ Form::close() }}
@if (userPermission('update-textlocal-data'))
{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'update-textlocal-data', 'id' => 'textlocal_form', 'method' => 'POST']) }}
@endif
@if ($errors->has('textlocal_type'))
{{ $errors->first('textlocal_type') }}
@endif
@php
$tooltip = '';
if (userPermission('update-textlocal-data')) {
$tooltip = '';
} else {
$tooltip = 'You have no permission to add';
}
@endphp
{{ Form::close() }}
@if (userPermission('himalayasms.update-setting') && moduleStatusCheck('HimalayaSms'))
{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'himalayasms.update-setting', 'id' => 'textlocal_form', 'method' => 'POST']) }}
@endif
@php
$tooltip = '';
if (userPermission('himalayasms.update-setting')) {
$tooltip = '';
} else {
$tooltip = 'You have no permission to add';
}
@endphp
{{ Form::close() }}
@if (userPermission('update-africatalking-data'))
{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'update-africatalking-data', 'id' => 'textlocal_form', 'method' => 'POST']) }}
@endif
@php
$tooltip = '';
if (userPermission('update-africatalking-data')) {
$tooltip = '';
} else {
$tooltip = 'You have no permission to add';
}
@endphp
{{ Form::close() }}
{{-- custom sms setting --}}
@include('backEnd.systemSettings.includes.customSmsSetting')