@extends('header') @section('top-right') @if (env('WEPAY_CLIENT_ID') && ! count($accountGatewaysIds)) {!! Button::primary(trans('texts.sign_up_with_wepay')) ->asLinkTo(URL::to('/gateways/create?wepay=true')) !!} @endif @stop @section('content') @parent @include('accounts.nav', ['selected' => ACCOUNT_PAYMENTS])

{!! trans($title) !!}

{!! Former::open($url)->method($method)->rule()->addClass('warn-on-exit') !!} @if ($accountGateway) {!! Former::populateField('primary_gateway_id', $accountGateway->gateway_id) !!} {!! Former::populateField('recommendedGateway_id', $accountGateway->gateway_id) !!} {!! Former::populateField('show_address', intval($accountGateway->show_address)) !!} {!! Former::populateField('update_address', intval($accountGateway->update_address)) !!} {!! Former::populateField('publishable_key', $accountGateway->getPublishableStripeKey() ? str_repeat('*', strlen($accountGateway->getPublishableStripeKey())) : '') !!} {!! Former::populateField('enable_ach', $accountGateway->getAchEnabled() ? 1 : 0) !!} {!! Former::populateField('enable_sofort', $accountGateway->getSofortEnabled() ? 1 : 0) !!} {!! Former::populateField('enable_alipay', $accountGateway->getAlipayEnabled() ? 1 : 0) !!} {!! Former::populateField('enable_paypal', $accountGateway->getPayPalEnabled() ? 1 : 0) !!} {!! Former::populateField('plaid_client_id', $accountGateway->getPlaidClientId() ? str_repeat('*', strlen($accountGateway->getPlaidClientId())) : '') !!} {!! Former::populateField('plaid_secret', $accountGateway->getPlaidSecret() ? str_repeat('*', strlen($accountGateway->getPlaidSecret())) : '') !!} {!! Former::populateField('plaid_public_key', $accountGateway->getPlaidPublicKey() ? str_repeat('*', strlen($accountGateway->getPlaidPublicKey())) : '') !!} @if ($config) @foreach ($accountGateway->fields as $field => $junk) @if (in_array($field, $hiddenFields)) {{-- do nothing --}} @elseif (isset($config->$field)) {{ Former::populateField($accountGateway->gateway_id.'_'.$field, $config->$field) }} @endif @endforeach @endif @else {!! Former::populateField('show_address', 1) !!} {!! Former::populateField('update_address', 1) !!} @if (Utils::isNinjaDev()) @include('accounts.partials.payment_credentials') @endif @endif @if ($accountGateway)
{!! Former::text('primary_gateway_id') !!}
@else {!! Former::select('primary_gateway_id') ->fromQuery($primaryGateways, 'name', 'id') ->label(trans('texts.gateway_id')) ->onchange('setFieldsShown()') ->help(count($secondaryGateways) ? false : 'limited_gateways') !!} @if (count($secondaryGateways)) {!! Former::select('secondary_gateway_id') ->fromQuery($secondaryGateways, 'name', 'id') ->addGroupClass('secondary-gateway') ->label(' ') ->onchange('setFieldsShown()') !!} @endif @endif @foreach ($gateways as $gateway) @endforeach @if (!$accountGateway || $accountGateway->gateway_id == GATEWAY_STRIPE)
{!! Former::checkbox('enable_ach') ->label(trans('texts.ach')) ->text(trans('texts.enable_ach')) ->value(1) !!} {!! Former::checkbox('enable_sofort') ->label(trans('texts.sofort')) ->text(trans('texts.enable_sofort')) ->value(1) !!} {!! Former::checkbox('enable_alipay') ->label(trans('texts.alipay')) ->text(trans('texts.enable_alipay')) ->help(trans('texts.stripe_alipay_help', ['link' => link_to('https://dashboard.stripe.com/account/payments/settings', 'Stripe', ['target' => '_blank'])])) ->value(1) !!}
{!! trans('texts.stripe_webhook_help', [ 'link'=>''.trans('texts.stripe_webhook_help_link_text').'' ]) !!}

{{trans('texts.plaid')}}

{{trans('texts.plaid_optional')}}
{!! Former::text('plaid_client_id')->label(trans('texts.client_id')) !!} {!! Former::text('plaid_secret')->label(trans('texts.secret')) !!} {!! Former::text('plaid_public_key')->label(trans('texts.public_key')) ->help(trans('texts.plaid_environment_help')) !!}
@elseif (! $accountGateway || $accountGateway->gateway_id == GATEWAY_GOCARDLESS)
{!! trans('texts.stripe_webhook_help', [ 'link'=>''.trans('texts.gocardless_webhook_help_link_text').'' ]) !!}
@elseif ($accountGateway && $accountGateway->gateway_id == GATEWAY_WEPAY) {!! Former::checkbox('enable_ach') ->label(trans('texts.ach')) ->text(trans('texts.enable_ach')) ->value(1) !!} @endif

{!! Button::normal(trans('texts.cancel'))->large()->asLinkTo(URL::to('/settings/online_payments'))->appendIcon(Icon::create('remove-circle')) !!} {!! Button::success(trans('texts.save'))->submit()->large()->appendIcon(Icon::create('floppy-disk')) !!}
{!! Former::close() !!} @stop