@extends('master.team-registration') @push('footer.scripts') @stop @section('content')

Authorize Payment Integration

@if (count($errors) > 0)

Validation Errors!

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open(array('url' => 'registration/checkout', 'method'=>'POST', 'class'=> 'subscription_form')) !!}
{!! Form::selectMonth(null, null, ['name' => 'card_expiry_month', 'class' => 'form-control', 'required']) !!}
{!! Form::selectYear(null, date('Y'), date('Y') + 10, null, ['name' => 'card_expiry_year', 'class' => 'form-control', 'required']) !!}
@stop