@extends('layouts.app') @section('css') @endsection @section('page-header')
{{ __('Secure Checkout') }}
{{ $errors->first('name') }}
{{ $errors->first('lastname') }}
{{ $errors->first('email') }}
{{ $errors->first('phone_number') }}
{{ $errors->first('address') }}
{{ $errors->first('city') }}
{{ $errors->first('postal_code') }}
{{ $errors->first('country') }}
{{ $errors->first('vat') }}
{{ $bank['bank_instructions'] }}
Order ID: {{ $bank_order_id }}
{{ $bank['bank_requisites'] }}
{{ __('Subscription Plan Details') }}
{{ $id->plan_name }}
@if ($id->free) {{ __('Free') }} @else @if(config('payment.decimal_points') == 'allow'){{ number_format((float)$id->price, 2) }} @else{{ number_format($id->price) }} @endif {{ $id->currency }} / {{ $id->payment_frequency }} @endif
{{ __('Included Features') }}
{{ __('Subtotal') }} @if (config('payment.decimal_points') == 'allow') {{ number_format((float)$id->price, 2, '.', '') }} @else {{ number_format($id->price) }} @endif {{ $id->currency }}
{{ __('Taxes') }} ({{ config('payment.payment_tax') }}%)@if (config('payment.decimal_points') == 'allow') {{ number_format((float)$tax_value, 2, '.', '') }} @else {{ number_format($tax_value) }} @endif {{ $id->currency }}
{{ __('Total Due') }} @if (config('payment.decimal_points') == 'allow') {{ number_format((float)$total_value, 2, '.', '') }} @else {{ number_format($total_value) }} @endif {{ $currency }}