mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 12:12:48 +01:00
13 lines
457 B
PHP
13 lines
457 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
|