mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
12 lines
448 B
PHP
12 lines
448 B
PHP
|
@extends('payments.payment_method')
|
||
|
|
||
|
@section('head')
|
||
|
@parent
|
||
|
|
||
|
@if (isset($accountGateway) && $accountGateway->getPlaidEnabled())
|
||
|
<a href="https://plaid.com/products/auth/" target="_blank" style="display:none" id="secured_by_plaid"><img src="{{ URL::to('images/plaid-logowhite.svg') }}">{{ trans('texts.secured_by_plaid') }}</a>
|
||
|
<script src="https://cdn.plaid.com/link/stable/link-initialize.js"></script>
|
||
|
@endif
|
||
|
|
||
|
@stop
|