@extends('portal.ninja2020.layout.app') @section('meta_title', ctrans('texts.pre_payment')) @push('head') @endpush @section('body')
@csrf

{{ ctrans('texts.payment') }}

@component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.payment_details')]) @if($errors->has('notes'))

{{ $errors->first('notes') }}

@endif @endcomponent @component('portal.ninja2020.components.general.card-element', ['title' => $title]) @if($minimum > 0)

{{ ctrans('texts.minimum_required_payment', ['amount' => $minimum_amount])}}

@endif @if($errors->has('amount'))

{{ $errors->first('amount') }}

@endif @endcomponent @if($allows_recurring)
@component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.enable_recurring')]) @endcomponent
@component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.number_of_payments')]) @endcomponent @component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.frequency')]) @endcomponent
@endif
@endsection