{{ html()->form('POST', route('paymentsettingsUpdates'))->attribute('enctype', 'multipart/form-data')->attribute('data-toggle', 'validator')->open() }} {{ html()->hidden('id',$payment_data->id ?? null)->attribute('placeholder', 'id')->class('form-control') }} {{ html()->hidden('type', $tabpage)->attribute('placeholder', 'id')->class('form-control') }}
status == 1 ? 'checked' : ''}}>

{{ html()->label(trans('messages.gateway_name').' *', 'title', ['class' => 'form-control-label']) }} {{ html()->text('title',old('title')) ->id('title') ->placeholder(trans('messages.title')) ->class('form-control') }}
{{ html()->label(trans('messages.app_id').' *', 'app_id', ['class' => 'form-control-label']) }} {{ html()->text('app_id', old('app_id') ) ->id('app_id') ->placeholder(trans('messages.app_id')) ->class('form-control') }}
{{ html()->label(trans('messages.merchant_id').' *', 'merchant_id', ['class' => 'form-control-label']) }} {{ html()->text('merchant_id',old('merchant_id') ) ->id('merchant_id') ->placeholder(trans('messages.merchant_id')) ->class('form-control') }}
{{ html()->label(trans('messages.salt_key').' *', 'salt_key', ['class' => 'form-control-label']) }} {{ html()->text('salt_key', old('salt_key')) ->id('salt_key') ->placeholder(trans('messages.salt_key')) ->class('form-control') }}
{{ html()->label(trans('messages.salt_index').' *', 'salt_index', ['class' => 'form-control-label']) }} {{ html()->number('salt_index', old('salt_index')) ->id('salt_index') ->placeholder(trans('messages.salt_index')) ->class('form-control') }}
{{ html()->submit(__('messages.save'))->class("btn btn-md btn-primary float-md-end") }} {{ html()->form()->close() }}