@php $tokenization_key = payment_gateway('tokenization_key','PayPal'); $merchant_account_id = payment_gateway('merchant_account_id','PayPal'); @endphp

{{trans('experiences.payment.confirm_and_pay')}}

{!! Form::select('payment_country', $countries, $default_country_code, ['id' => 'country-select']) !!} {!! Form::hidden('payment_intent_id', '', ['id'=>'payment_intent_id']) !!} {!! Form::hidden('nonce', '', ['id'=>'nonce']) !!}
{!! Form::text('cc_number', '', ['id'=>'input_cc_number', 'autocomplete'=>'off']) !!}
{{ $errors->first('cc_number') }}
{!! Form::selectRangeWithDefault('cc_expire_month', 1, 12, null, 'mm', [ 'class' => '', 'id' => 'input_cc_expire_month']) !!}
{!! Form::selectRangeWithDefault('cc_expire_year', date('Y'), date('Y')+30, null, 'yyyy', [ 'class' => '', 'id' => 'input_cc_expire_year']) !!}
@if($errors->has('cc_expire_month') || $errors->has('cc_expire_year'))
@if($errors->has('cc_expire_month')) {{ $errors->first('cc_expire_month') }} @endif @if($errors->has('cc_expire_month') == '' || $errors->has('cc_expire_year') ) {{ $errors->first('cc_expire_year') }} @endif
@endif
{!! Form::text('cc_security_code', '', ['class' => '', 'id' => 'input_cc_security_code', 'autocomplete' => 'off']) !!}
{{ $errors->first('cc_security_code') }}

{{ trans('messages.payments.billing_info') }}

{!! Form::text('first_name', '', ['id' => 'input_first_name']) !!}
{{ $errors->first('first_name') }}
{!! Form::text('last_name', '', ['id' => 'input_last_name']) !!}
{{ $errors->first('last_name') }}
{!! Form::text('postal_code', '', ['id' => 'input_postal_code']) !!}
{{ $errors->first('postal_code') }}
{{trans('experiences.payment.redeem_a_coupon')}} {{trans('experiences.payment.redeem_a_coupon')}}
@yield('price_data') @yield('cancellation_policy_data')

{{trans('experiences.payment.by_confirm_booking_agree_to_the')}} {{trans('experiences.payment.site_additional_terms_service', ['site_name' => SITE_NAME])}} , {{trans('experiences.payment.guest_release_and_waiver')}} , {{trans('experiences.payment.and_the')}} {{trans('experiences.payment.cancellation_policy')}} .