@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($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.cycles_remaining')]) @endcomponent @component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.frequency')]) @endcomponent
@endif
@endsection