@view('header', [ 'title' => 'Pay ' . $payment_link->name . ' - Payment Links' ])

{{ $payment_link->name }}

For: {{ $payment_link->account->name }}

Amount: {!! format_money($payment_link->amount) !!}

@if (Auth::check()): @if ($payment_link->account->user_id == Auth::id()):

You can't pay your own payment links!

@else: @view('errors')
@view('csrf_token')
@endif @else:

Login or register to Banq to pay this payment link:

Login Register
@endif @view('footer')