@extends('app') @section('head_title',trans('words.payment_method').' | '.getcong('site_name') ) @section('head_url', Request::url()) @section("content")
@if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif @if(Session::has('error_flash_message'))
{{ Session::get('error_flash_message') }}
@endif

{{trans('words.payment_method')}}

{{trans('words.you_have_selected')}}{{$plan_info->plan_name}}

{{trans('words.logged_in_as')}} {{Auth::User()->email}}

@if(Auth::User()->mobile!='')
@if(getPaymentGatewayInfo(1)->status)

{{getPaymentGatewayInfo(1)->gateway_name}}

{{trans('words.pay_with')}} {{getPaymentGatewayInfo(1)->gateway_name}}

{!! Form::open(array('url' => 'paypal/pay','class'=>'','id'=>'','role'=>'form','method'=>'POST')) !!} {!! Form::close() !!}
@endif @if(getPaymentGatewayInfo(2)->status)

{{getPaymentGatewayInfo(2)->gateway_name}}

{{trans('words.pay_with')}} {{getPaymentGatewayInfo(2)->gateway_name}}

{{trans('words.pay_now')}}
@endif @if(getPaymentGatewayInfo(3)->status)

{{getPaymentGatewayInfo(3)->gateway_name}}

{{trans('words.pay_with')}} {{getPaymentGatewayInfo(3)->gateway_name}}

@endif @if(getPaymentGatewayInfo(4)->status)

{{getPaymentGatewayInfo(4)->gateway_name}}

{{trans('words.pay_with')}} {{getPaymentGatewayInfo(4)->gateway_name}}

{!! Form::open(array('url' => 'pay','class'=>'','id'=>'','role'=>'form','method'=>'POST')) !!} {!! Form::close() !!}
@endif
@else
@if(getPaymentGatewayInfo(1)->status)

{{getPaymentGatewayInfo(1)->gateway_name}}

{{trans('words.pay_with')}} {{getPaymentGatewayInfo(1)->gateway_name}}

{{trans('words.pay_now')}}
@endif @if(getPaymentGatewayInfo(2)->status)

{{getPaymentGatewayInfo(2)->gateway_name}}

{{trans('words.pay_with')}} {{getPaymentGatewayInfo(2)->gateway_name}}

{{trans('words.pay_now')}}
@endif @if(getPaymentGatewayInfo(3)->status)

{{getPaymentGatewayInfo(3)->gateway_name}}

{{trans('words.pay_with')}} {{getPaymentGatewayInfo(3)->gateway_name}}

{{trans('words.pay_now')}}
@endif @if(getPaymentGatewayInfo(4)->status)

{{getPaymentGatewayInfo(4)->gateway_name}}

{{trans('words.pay_with')}} {{getPaymentGatewayInfo(4)->gateway_name}}

{{trans('words.pay_now')}}
@endif
@endif
@endsection