@extends('frontend.layouts.app') @section('title') {{ __('post_job') }} - {{ currencyPosition($job_total_amount) }} @endsection @php $current_currency = currentCurrency(); $code = $current_currency->code; @endphp @section('main')

{{ __('total_amount_to_pay') }} : {{ currencyPosition($job_total_amount) }}

{{ __('online_payment_gatewats') }}
@if (config('paypal.active') || config('templatecookie.stripe_active') || config('templatecookie.razorpay_active') || config('templatecookie.paystack_active') || config('templatecookie.ssl_active') || config('templatecookie.flw_active') || config('templatecookie.im_active') || config('templatecookie.midtrans_active') || config('templatecookie.mollie_active')) {{-- Paypal payment --}} @if (config('paypal.mode') == 'sandbox') @if (config('paypal.active') && config('paypal.sandbox.client_id') && config('paypal.sandbox.client_secret'))
{{ __('paypal') }}
@endif @else @if (config('paypal.active') && config('paypal.live.client_id') && config('paypal.live.client_secret'))
{{ __('paypal') }}
@endif @endif {{-- Stripe payment --}} @if (config('templatecookie.stripe_active') && config('templatecookie.stripe_key') && config('templatecookie.stripe_secret'))
{{ __('stripe') }}
@endif {{-- Razorpay payment --}} @if (config('templatecookie.razorpay_active') && config('templatecookie.razorpay_key') && config('templatecookie.razorpay_secret'))
{{ __('razorpay') }}
@endif {{-- Paystack payment --}} @if (config('templatecookie.paystack_active') && config('templatecookie.paystack_key') && config('templatecookie.paystack_secret'))
{{ __('paystack') }}
@endif {{-- Flutterwave payment --}} @if (config('templatecookie.flw_public_key') && config('templatecookie.flw_secret') && config('templatecookie.flw_secret_hash') && config('templatecookie.flw_active'))
{{ __('flutterwave') }}
@endif {{-- Mollie payment --}} @if (config('templatecookie.mollie_key') && config('templatecookie.mollie_active'))
{{ __('mollie') }}
@endif {{-- Instamojo payment --}} @if (config('templatecookie.im_key') && config('templatecookie.im_secret') && config('templatecookie.im_url') && config('templatecookie.im_active'))
{{ __('instamojo') }}
@endif {{-- Midtrans payment --}} @if (config('templatecookie.midtrans_active') && config('templatecookie.midtrans_merchat_id') && config('templatecookie.midtrans_client_key') && config('templatecookie.midtrans_server_key'))
{{ __('midtrans') }}
@endif {{-- SSl Commerz payment --}} @if (config('sslcommerz.active') && config('sslcommerz.store.id') && config('sslcommerz.store.password'))
{{ __('sslcommerz') }}
@endif @else

{{ __('no_payment_method_available_here') }}

@endif
{{ __('manual_payment_gateways') }}
@foreach ($manual_payments as $payment)
@csrf
{{ $payment->name }}

{!! $payment->description !!}

@endforeach
{{-- Paypal Form --}}
@csrf
{{-- Stripe Form --}}
@csrf
{{-- Razorpay Form --}}
@csrf
{{-- paystack_btn Form --}}
@csrf
{{-- flutterwave Form --}}
{{-- mollie Form --}}
@csrf
{{-- instamojo Form --}}
@csrf
{{-- SSL Form --}}
@csrf {{-- --}} {{-- --}}
@endsection @section('script') @if (config('templatecookie.midtrans_active') && config('templatecookie.midtrans_merchat_id') && config('templatecookie.midtrans_client_key') && config('templatecookie.midtrans_server_key')) @endif @endsection