@include('admin/shared/password', ['name' => 'public_key', 'label' => __('admin.settings.store.gateways.fields.client_id'), 'value' => env('STRIPE_PUBLIC_KEY')])
@include('admin/shared/password', ['name' => 'private_key', 'label' => __('admin.settings.store.gateways.fields.client_secret'), 'value' => env('STRIPE_PRIVATE_KEY')])
@include('admin/shared/password', ['name' => 'webhook_secret', 'label' => __('admin.settings.store.gateways.fields.webhook'), 'value' => env('STRIPE_WEBHOOK_SECRET', 'sandbox')])
@include('admin/shared/search-select-multiple', ['name' => 'payment_types[]', 'label' => __('admin.settings.store.gateways.fields.payments_types'), 'value' => explode(',', env('STRIPE_PAYMENT_TYPES', 'card')), 'options' => $options, 'attributes' => ['multiple' => '']])

{{ __('admin.settings.store.gateways.fields.webhookhelp', ['url' => route('gateways.notification', ['gateway' => 'stripe'])]) }}