@extends('theme.master') @section('title', __('Checkout')) @section('content') @include('admin.message')

{{ __('frontstaticword.Wallet') }} {{ __('frontstaticword.Checkout') }}

    @if($gsetting['currency_swipe'] == 1)
  • {{ __('frontstaticword.Total') }}: {{ strip_tags($amount) }}

  • @else
  • {{ __('frontstaticword.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
@endif @if($wallet_settings->paytm_enable == 1)
@csrf
{{ __('Name') }}
{{ __('Mobile Number') }}
{{ __('Email Id') }}
@endif @if($wallet_settings->stripe_enable == 1)
{{ csrf_field() }}
@endif
@endsection @section('custom-script') @endsection