@extends('master.team-registration') @push('footer.scripts') @stop @section('content') {{ $eventObj->name }} - Checkout @if($eventObj->logo != '') @if($eventObj->race_date != '' && $eventObj->race_date != '0000-00-00 00:00:00') {{ date('F d D, Y', strtotime($eventObj->race_date)) }} @endif @endif @if (count($errors) > 0) Validation Errors! @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif {!! Form::open(array('id' => 'register_checkout_form', 'url' => 'registration/checkout/process', 'method'=>'POST', 'class'=> 'subscription_form')) !!} Payment Options: Early Date Registration - {{ date('F d D, Y', strtotime($eventObj->early_date)) }} - ${{ $teamCategoryObj ->early_date_price }} @if ($teamCategoryObj->early_date_pp > 0) (${{ $teamCategoryObj->early_date_pp }} pp) @endif Normal Date Registration - {{ date('F d D, Y', strtotime($eventObj->normal_date)) }} - ${{ $teamCategoryObj ->normal_date_price }} @if ($teamCategoryObj->normal_date_pp > 0) (${{ $teamCategoryObj->normal_date_pp }} pp) @endif Late Registration - {{ date('F d D, Y', strtotime($eventObj->late_date)) }} - ${{ $teamCategoryObj ->late_date_price }} @if ($teamCategoryObj->late_date_pp > 0) (${{ $teamCategoryObj->late_date_pp }} pp) @endif Calculate Price: Price Discount Coupon Code Calculate Discount Discount Amount Subtotal (After Discount) Credit Card Fee (3%) Final Price Credit Card Information: Type Visa Mastercard American Express Discover Diners Club/ Carte Blanche JCB Credit Card Expiry Month 01 02 03 04 05 06 07 08 09 10 11 12 Expiry Year 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 CVV Submit @stop