{{ html()->form('POST', route('otherSetting')) ->attribute('enctype', 'multipart/form-data') ->attribute('data-toggle', 'validator') ->id('myForm') ->open() }} {{ html()->hidden('id', $othersetting->id ?? null ) ->class('form-control') ->placeholder('id') }} {{ html()->hidden('type', $page) ->class('form-control') ->placeholder('id') }}
social_login) ? 'checked' : '' }}>
google_login) ? 'checked' : '' }}>
apple_login) ? 'checked' : '' }}>
otp_login) ? 'checked' : '' }}>
online_payment) ? 'checked' : '' }}>
blog) ? 'checked' : '' }}>
enable_chat_gpt) ? 'checked' : '' }}>
test_without_key) ? 'checked' : 'checked' }}>
{{ html()->label(__('messages.key') . ' ') ->class('form-control-label') }} {{ html()->text('chat_gpt_key', $othersetting->chat_gpt_key) ->class('form-control') ->id('chat_gpt_key') ->placeholder(__('messages.key')) }}
@hasanyrole('admin')
maintenance_mode) ? 'checked' : '' }}>
@endhasanyrole
wallet) ? 'checked' : '' }}>
force_update_user_app) ? 'checked' : '' }}>
{{ html()->label(__('messages.user_app_minimum_version') . ' ') ->class('form-control-label') }} {{ html()->number('user_app_minimum_version', $othersetting->provider_app_minimum_version) ->id('user_app_minimum_version') ->placeholder('1') ->class('form-control') }}
{{ html()->label(__('messages.user_app_latest_version') . ' ') ->class('form-control-label') }} {{ html()->number('user_app_latest_version', $othersetting->provider_app_minimum_version) ->id('user_app_latest_version') ->placeholder('2') ->class('form-control') }}
force_update_provider_app) ? 'checked' : '' }}>
{{ html()->label(trans('messages.provider_app_minimum_version') . ' ', 'provider_app_minimum_version', ['class' => 'form-control-label']) }} {{ html()->number('provider_app_minimum_version', $othersetting->provider_app_minimum_version) ->class('form-control') ->id('provider_app_minimum_version') ->placeholder('1') }}
{{ html()->label(trans('messages.provider_app_latest_version') . ' ', 'provider_app_latest_version', ['class' => 'form-control-label']) }} {{ html()->number('provider_app_latest_version', $othersetting->provider_app_latest_version) ->class('form-control') ->id('provider_app_latest_version') ->placeholder('2') }}
force_update_admin_app) ? 'checked' : '' }}>
{{ html()->label(trans('messages.admin_app_minimum_version') . ' ', 'admin_app_minimum_version', ['class' => 'form-control-label']) }} {{ html()->number('admin_app_minimum_version', $othersetting->admin_app_minimum_version) ->class('form-control') ->id('admin_app_minimum_version') ->placeholder('1') }}
{{ html()->label(trans('messages.admin_app_latest_version') . ' ', 'admin_app_latest_version', ['class' => 'form-control-label']) }} {{ html()->number('admin_app_latest_version', $othersetting->admin_app_latest_version) ->class('form-control') ->id('admin_app_latest_version') ->placeholder('2') }}
is_in_app_purchase_enable) ? 'checked' : '' }}>
{{ html()->label(trans('messages.entitlement_id') . ' ', 'entitlement_id', ['class' => 'form-control-label']) }} {{ html()->text('entitlement_id', $othersetting->entitlement_id ?? '') ->class('form-control') ->id('entitlement_id') ->placeholder('Enter Entitlement ID') }}
{{ html()->label(trans('messages.google_public_api_key') . ' ', 'google_public_api_key', ['class' => 'form-control-label']) }} {{ html()->text('google_public_api_key', $othersetting->google_public_api_key ?? '') ->class('form-control') ->id('google_public_api_key') ->placeholder('Enter Google API Key') }}
{{ html()->label(trans('messages.apple_public_api_key') . ' ', 'apple_public_api_key', ['class' => 'form-control-label']) }} {{ html()->text('apple_public_api_key', $othersetting->apple_public_api_key ?? '') ->class('form-control') ->id('apple_public_api_key') ->placeholder('Enter Apple API Key') }}
firebase_notification) ? 'checked' : '' }}>
{{ html()->label(trans('messages.firebase_project_id') . ' ', 'project_id', ['class' => 'form-control-label']) }} {{ html()->text('project_id', $othersetting->project_id) ->class('form-control') ->id('project_id') ->placeholder(__('messages.firebase_project_id')) }}
{{-- {{ Form::label('json_file',trans('messages.json_file').' ',['class'=>'form-control-label'], false ) }} --}}
{{ html()->file('json_file')->class('custom-file-input')->id('json_file')->attribute('accept', '.json')->attribute('aria-describedby', 'additionalFileHelp')}}
auto_assign_provider) ? 'checked' : '' }}>
enable_chat) ? 'checked' : '' }}>
whatsapp_notification) && $othersetting->whatsapp_notification == 1 ? 'checked' : '' }}>
{{ html()->text('twilio_sid_whatsapp', $othersetting->twilio_sid_whatsapp ?? '')->class('form-control')->id('twilio_sid_whatsapp')->placeholder(__('messages.twilio_sid')) }}
{{ html()->text('twilio_auth_token_whatsapp', $othersetting->twilio_auth_token_whatsapp ?? '')->class('form-control')->id('twilio_auth_token_whatsapp')->placeholder(__('messages.twilio_auth_token')) }}
{{ html()->number('twilio_whatsapp_number', $othersetting->twilio_whatsapp_number ?? '')->class('form-control')->id('twilio_whatsapp_number')->placeholder(__('messages.twilio_whatsapp_number')) }}
sms_notification) && $othersetting->sms_notification == 1 ? 'checked' : '' }}>
{{ html()->text('twilio_sid_sms', $othersetting->twilio_sid_sms ?? '')->class('form-control')->id('twilio_sid_sms')->placeholder(__('messages.twilio_sid')) }}
{{ html()->text('twilio_auth_token_sms', $othersetting->twilio_auth_token_sms ?? '')->class('form-control')->id('twilio_auth_token_sms')->placeholder(__('messages.twilio_auth_token')) }}
{{ html()->number('twilio_phone_number_sms', $othersetting->twilio_phone_number_sms ?? '')->class('form-control')->id('twilio_phone_number_sms')->placeholder(__('messages.twilio_phone_number')) }}
dashboard_type ?? '') == 'dashboard' ? 'checked' : '' }}>
dashboard_type ?? '') == 'dashboard_1' ? 'checked' : '' }}>
dashboard_type ?? '') == 'dashboard_2' ? 'checked' : '' }}>
dashboard_type ?? '') == 'dashboard_3' ? 'checked' : '' }}>
dashboard_type ?? '') == 'dashboard_4' ? 'checked' : '' }}>
{{ html()->submit(__('messages.save'))->class('btn btn-md btn-primary float-md-end submit_section1') }} {{ html()->form()->close() }}