@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')}} Card Number Expiration Date CVV {{ __('Proceed') }} @endif @endsection @section('custom-script') @endsection