@extends('theme.master') @section('title', __('Checkout')) @section('content') @include('admin.message') @php $gets = App\Breadcum::first(); @endphp @if(isset($gets)) @if($gets['img'] !== NULL && $gets['img'] !== '') @else @endif {{ __('Wallet') }} {{ __('Checkout') }} @endif @if($gsetting['currency_swipe'] == 1) {{ __('Total') }}: {{ strip_tags($amount) }} @else {{ __('Total') }}: {{ strip_tags($amount) }} @endif @php if($amount != '' || $amount != 0){ $mainpay = strip_tags(round($amount,2)); }else{ $mainpay = strip_tags(round($amount,2)); } @endphp @php $secureamount = Crypt::encrypt($mainpay); @endphp @if($wallet_settings->paypal_enable == 1) @csrf {{ __('Proceed') }} @endif @if($wallet_settings->paytm_enable == 1) @csrf {{ __('Name') }} {{ __('Mobile Number') }} {{ __('Email Id') }} {{ __('Proceed') }} @endif @if($wallet_settings->stripe_enable == 1) {{ csrf_field() }} {{ __('Owner') }} {{ __('CVV') }} {{ __('Card Number') }} {{ __('Expiration Date') }} {{ __('January') }} {{ __('February') }} {{ __('March') }} {{ __('April') }} {{ __('May') }} {{ __('June') }} {{ __('July') }} {{ __('August') }} {{ __('September') }} {{ __('October') }} {{ __('November') }} {{ __('December') }} {{ __('2019') }} {{ __('2020') }} {{ __('2021') }} {{ __('2022') }} {{ __('2023') }} {{ __('2024') }} {{ __('2025') }} {{ __('2026') }} {{ __('2027') }} {{ __('2028') }} {{ __('2029') }} {{ __('2030') }} {{ __('2031') }} {{ __('2032') }} {{ __('Proceed') }} @endif @endsection @section('custom-script') @endsection