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