@extends('layouts.member-app') @section('page-title')

{{ __($pageTitle) }}

@endsection @push('head-script') @endpush @section('content')
@lang('modules.payments.addPayment')
{!! Form::open(['id'=>'createPayment','class'=>'ajax-form','method'=>'POST']) !!}
{!! Form::hidden('invoice_id', $invoice->id) !!}

{{ $invoice->invoice_number }}

@if($invoice->project_id)

{{ $invoice->project->project_name }}

@endif

{{ $invoice->currency->currency_symbol.' '.$invoice->total }}

{{ $invoice->currency->currency_symbol}} {{ $paidAmount }}

{{ $invoice->currency->currency_symbol}} {{ max(($invoice->total-$paidAmount),0) }}

Paypal, Authorize.net, Stripe, Bank Transfer, Cash or others.
{!! Form::close() !!}
@endsection @push('footer-script') @endpush