@extends('store.layout') @section('title', __('Checkout')) @section('content')

{{ __('Checkout') }}

@include('components.alert-success') @include('components.alert-danger')
@csrf

{{ __('Payment Method') }}

@foreach($paymentProcessors as $processor)
@endforeach

{{ __('Billing Information') }}

@if ($errors->has('full_name')) @endif
@if ($errors->has('email')) @endif
@if ($errors->has('phone')) @endif
@if ($errors->has('address')) @endif
@if ($errors->has('city')) @endif
@if ($errors->has('state')) @endif
@if ($errors->has('country')) @endif
@if ($errors->has('zip')) @endif
@include('store.checkout.partials._order_summary')
@endsection