@include('helpers.form_control', [
'type' => 'select',
'name' => 'options[environment]',
'value' => $gateway['fields']['environment'],
'label' => trans('messages.payment.paypal.environment'),
'help_class' => 'payment',
'options' => [['text' => 'Sandbox', 'value' => 'sandbox'],['text' => 'Production', 'value' => 'production']],
'rules' => ['options.environment' => 'required'],
])
@include('helpers.form_control', [
'type' => 'text',
'class' => '',
'name' => 'options[client_id]',
'value' => $gateway['fields']['client_id'],
'label' => trans('messages.payment.paypal.client_id'),
'help_class' => 'payment',
'rules' => ['options.client_id' => 'required'],
])
@include('helpers.form_control', [
'type' => 'text',
'class' => '',
'name' => 'options[secret]',
'value' => $gateway['fields']['secret'],
'label' => trans('messages.payment.paypal.secret'),
'help_class' => 'payment',
'rules' => ['options.secret' => 'required'],
])