@extends('layouts.website') @section('title', 'Payment Method') @section('content') @include('website.checkout.stepsbar') Your Card Your information @csrf Cardholder Name @if($errors->has('name')) {{$errors->first('name')}} @endif Card Number @if($errors->has('card_number')) {{$errors->first('card_number')}} @endif Expire Month MM 01 02 04 05 06 07 08 09 10 11 12 @if($errors->has('exp_month')) {{$errors->first('exp_month')}} @endif Expire Year YYYY @for($i=Carbon\Carbon::now()->year; $i< Carbon\Carbon::now()->addYears(5)->year; $i++) {{$i}} @endfor @if($errors->has('exp_year')) {{$errors->first('exp_year')}} @endif CVV @if($errors->has('cvv')) {{$errors->first('cvv')}} @endif Back to Cart Go Delivery Methods @endsection