@extends('user.layout.base') @section('title', 'Payment') @section('content')

@lang('user.payment')

@include('common.notify')
@lang('user.payment_method') @if(config('constants.card') == 1) @lang('user.card.add_card') @endif
@lang('user.cash')
@if(config('constants.card') == 1) @foreach($cards as $card)
{{$card->brand}} **** **** **** {{$card->last_four}} @if($card->is_default) @lang('user.card.default') @endif
{{ csrf_field() }}
@endforeach @endif
@if(config('constants.card') == 1) @endif @endsection @section('scripts') @endsection