@include('helpers.form_control', [
'type' => 'text',
'name' => 'options[public_key]',
'value' => $gateway['fields']['public_key'],
'label' => trans('messages.payment.paystack.public_key'),
'help_class' => 'payment',
'rules' => ['options.public_key' => 'required'],
])
@include('helpers.form_control', [
'type' => 'text',
'name' => 'options[secret_key]',
'value' => $gateway['fields']['secret_key'],
'label' => trans('messages.payment.paystack.secret_key'),
'help_class' => 'payment',
'rules' => ['options.secret_key' => 'required'],
])
@if (!Acelle\Model\Setting::get('payment.' . $gateway['name']))
@else
@endif
{{ trans('messages.cancel') }}