@extends('layouts.app') @section('title', 'Payment') @section('content')

Complete Payment

Order # {{ $order->order_number }}
Amount {{ price($order->total) }}
Gateway {{ $gateway }}
@if($gateway === 'stripe')
@csrf
{{-- Stripe Elements will insert card input here --}}
@else

You will be redirected to complete your payment...

Continue to Payment
@endif
@if($gateway === 'stripe') @endif @endsection