@extends('layouts.app') @section('title','Checkout') @section('content')
{!! Form::open(['method'=>'POST','action' => 'CheckoutController@paymentNext']) !!}
@include('partials.cartItems')
Choose Payment Options
@if(Session::has('destination')) @if(Session::get('destination') == 'wholesale')
@endif @endif
Credit Card
{!! Form::label('card_type','Card Type:') !!} {!! Form::select('card_type', $cards, null,['class'=>'form-control', 'placeholder'=>'Select Card Type']) !!} @if ($errors->has('card_type')) {{ $errors->first('card_type') }} @endif
{!! Form::label('card_name','Name on Card :') !!} {!! Form::text('card_name', null, ['class'=>'form-control','placeholder'=>'Enter Name']) !!} @if ($errors->has('card_name')) {{ $errors->first('card_name') }} @endif
{!! Form::label('card_number','Card Number:') !!} {!! Form::number('card_number', null, ['class'=>'form-control','placeholder'=>'Card Number']) !!} @if ($errors->has('card_number')) {{ $errors->first('card_number') }} @endif
{!! Form::label('card_code','Validation Code:') !!} {!! Form::number('card_code', null, ['class'=>'form-control','placeholder'=>'Validation Code']) !!} @if ($errors->has('card_code')) {{ $errors->first('card_code') }} @endif
{!! Form::label('card_month','Expiration Month:') !!} {!! Form::select('card_month', $months, null,['class'=>'form-control', 'placeholder'=>'Select Month']) !!} @if ($errors->has('card_month')) {{ $errors->first('card_month') }} @endif
{!! Form::label('card_year','Expiration Year:') !!} {!! Form::select('card_year', $years, null,['class'=>'form-control', 'placeholder'=>'Select Year']) !!} @if ($errors->has('card_year')) {{ $errors->first('card_year') }} @endif
@include('partials.checkoutButtons')
{!! Form::close() !!}
@endsection