@extends('layouts.user') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ csrf_field() }}

Manage Billing Information

@foreach($cards->chunk(3) as $chunk)
@foreach($chunk as $card)
Last 4 Digits: {{$card->last4}}
Remove

Card Type: {{ $card->card_type }}

Expiry Month: {{ $card->exp_month }}

Expiry Year: {{ $card->exp_year }}

@endforeach
@endforeach
@endsection @section('page-js') @endsection