{{ 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) ? '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')) ->placeholder(trans('messages.client_id')) ->class('form-control') }}
{{ html()->submit(__('messages.save'))->class("btn btn-md btn-primary float-md-end") }} {{ html()->form()->close() }}