{{ 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', $payment_data->title) ->id('title') ->placeholder(trans('messages.title')) ->class('form-control') }}
{{ html()->label(trans('messages.stripe_url').' *', 'stripe_url', ['class' => 'form-control-label']) }} {{ html()->text('stripe_url',$payment_data->stripe_url) ->id('stripe_url') ->placeholder(trans('messages.stripe_url')) ->class('form-control') }}
{{ html()->label(trans('messages.stripe_key').' *', 'stripe_key', ['class' => 'form-control-label']) }} {{ html()->text('stripe_key', $payment_data->stripe_key) ->id('stripe_key') ->placeholder(trans('messages.stripe_key')) ->class('form-control') }}
{{ html()->label(trans('messages.stripe_publickey').' *', 'stripe_publickey', ['class' => 'form-control-label']) }} {{ html()->text('stripe_publickey', $payment_data->stripe_publickey) ->id('stripe_publickey') ->placeholder(trans('messages.stripe_publickey')) ->class('form-control') }}
{{ html()->submit(__('messages.save'))->class('btn btn-md btn-primary float-md-end') }} {{ html()->form()->close() }}