@extends('layouts.website') @section('title', 'Payment Method') @section('content')
@include('website.checkout.stepsbar')

Your Card

Your information

@csrf
@if($errors->has('name')) {{$errors->first('name')}} @endif
@if($errors->has('card_number')) {{$errors->first('card_number')}} @endif
Expire Month @if($errors->has('exp_month')) {{$errors->first('exp_month')}} @endif
Expire Year @if($errors->has('exp_year')) {{$errors->first('exp_year')}} @endif
CVV @if($errors->has('cvv')) {{$errors->first('cvv')}} @endif
@endsection