@extends('layouts/contentLayoutMaster') @section('title', __('locale.labels.checkout')) @section('vendor-style') @endsection @section('page-style') @endsection @section('content')
@csrf @if ($errors->any()) @foreach ($errors->all() as $error) @endforeach @endif
{{ __('locale.labels.purchase') }} {{ __('locale.labels.sender_id') }}
{{ __('locale.sender_id.payment_for_sender_id') }} {{ $senderid->sender_id }}
{{ __('locale.sender_id.payment_for_sender_id') }}: {{ $senderid->sender_id }}
{{ __('locale.labels.frequency') }}: {{ $senderid->displayFrequencyTime() }}
{{ __('locale.plans.price') }}: {{ \App\Library\Tool::format_price($senderid->price, $senderid->currency->format) }}
@if($taxAmount > 0)
{{ trans('locale.labels.tax') }} ({{ trans('locale.labels.vat_percent', [ 'percent' => $taxRate, ]) }}) : {{ \App\Library\Tool::format_price($taxAmount,$senderid->currency->format) }}
@endif
{{ __('locale.labels.total_price') }}: {{ \App\Library\Tool::format_price($price, $senderid->currency->format) }}
{{ __('locale.labels.address') }}
{{ __('locale.labels.billing_address') }}
{{ __('locale.labels.payment_options') }}
{{ __('locale.payment_gateways.click_on_correct_option') }}
    @foreach($payment_methods as $method)
  • @endforeach
@endsection @section('vendor-script') @endsection @section('page-script') @endsection