@extends('layouts.app') @section('title')Checkout @endsection @section('content') @if(isset($plans)) @foreach($plans as $plan) {{$plan->currency}}{{$plan->amount/100}} /{{$plan->interval}} {{$plan->product->name}} @endforeach @endif Card Holder Name @csrf Credit or debit card @if (count($errors) > 0) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif SUBMIT @endsection