@extends('layouts.app') @section('content') @include('includes.header') @include('includes.inner_page_title', ['page_title'=>__('Pay with Iyzico')])
@if(Auth::guard('company')->check()) @include('includes.company_dashboard_menu') @else @include('includes.user_dashboard_menu') @endif
{{__('Invoice Details')}}
{{__('Package')}}: {{ $package->package_title }}
{{__('Price')}}: {{ $siteSetting->default_currency_code }}{{ $package->package_price }}
@if(Auth::guard('company')->check()) @if($package->package_for == 'employer')
{{__('Can post jobs')}}: {{ $package->package_num_listings }}
@elseif($package->package_for == 'cv_search')
{{__('Applicant CV Views')}}: {{ $package->package_num_listings }}
@endif @elseif($package->package_for == 'job_seeker')
{{__('Can apply on jobs')}}: {{ $package->package_num_listings }}
@endif
{{__('Package Duration')}}: {{ $package->package_num_days }} {{__('Days')}}
@include('flash::message')
{{__('Iyzico - Payment Details')}}
@php $route = 'iyzico.order.upgrade.package'; if($new_or_upgrade == 'new'){ $route = 'iyzico.order.package'; } @endphp @if(isset($checkoutFormContent) && !empty($checkoutFormContent))
{{__('Iyzico Payment Gateway')}}
{{ $siteSetting->default_currency_code }}{{ $package->package_price }}
{!! $checkoutFormContent !!}
{{__('Go Back')}}
@else
{{__('Payment form could not be loaded. Please try again.')}}
@endif
{{__('Secure Payment')}}

{{__('Your payment information is encrypted and secure. We do not store your credit card details.')}}

@include('includes.footer') @endsection @push('styles') @endpush @push('scripts') @endpush