{{ 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.client_id').' *', 'client_id', ['class' => 'form-control-label']) }} {{ html()->text('client_id', old('client_id'))->id('client_id')->placeholder(trans('messages.client_id'))->class('form-control')}}
{{ html()->label(trans('messages.secret_key').' *', 'secret_key', ['class' => 'form-control-label']) }} {{ html()->text('secret_key',old('secret_key'))->id('secret_key')->placeholder(trans('messages.secret_key'))->class('form-control')}}
{{ html()->submit(__('messages.save'))->class("btn btn-md btn-primary float-md-end") }} {{ html()->form()->close() }}