@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 }} Normal Date Registration - {{ date('F d D, Y', strtotime($eventObj->normal_date)) }} - ${{ $teamCategoryObj ->normal_date_price }} Late Registration - {{ date('F d D, Y', strtotime($eventObj->late_date)) }} - ${{ $teamCategoryObj ->late_date_price }} Calculate Price: Price Discount Type Credit Deferral Discount Coupon Credit/Deferral Code Calculate Discount Discount Coupon Code Calculate Discount Discount Amount Final Price Submit @stop