@extends('portal.ninja2020.layout.payments', ['gateway_title' => 'ACH', 'card_title' => 'ACH'])
@section('gateway_head')
@if($gateway->company_gateway->getConfigField('account_id'))
@else
@endif
@endsection
@section('gateway_content')
@if(session()->has('ach_error'))
{{ session('ach_error') }}
@endif
Adding a bank account here requires verification, which may take several days. In order to use Instant Verification please pay an invoice first, this process will automatically verify your bank account.
@component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.account_holder_type')])
{{ __('texts.individual_account') }}
{{ __('texts.company_account') }}
@endcomponent
@component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.account_holder_name')])
@endcomponent
@component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.country')])
@foreach($countries as $country)
@if($country->iso_3166_2 == 'US')
{{ $country->iso_3166_2 }} ({{ $country->name }})
@else
{{ $country->iso_3166_2 }} ({{ $country->name }})
@endif
@endforeach
@endcomponent
@component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.currency')])
@foreach($currencies as $currency)
@if($currency->code == 'USD')
{{ $currency->code }} ({{ $currency->name }})
@else
{{ $currency->code }} ({{ $currency->name }})
@endif
@endforeach
@endcomponent
@component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.routing_number')])
@endcomponent
@component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.account_number')])
@endcomponent
@component('portal.ninja2020.components.general.card-element-single')
{{ ctrans('texts.ach_authorization', ['company' => auth()->user()->company->present()->name, 'email' => auth()->guard('contact')->user()->client->company->settings->email]) }}
@endcomponent
@component('portal.ninja2020.gateways.includes.pay_now', ['id' => 'save-button'])
{{ ctrans('texts.add_payment_method') }}
@endcomponent
@endsection
@section('gateway_footer')
@vite('resources/js/clients/payments/stripe-ach.js')
@endsection