@extends('layouts.wizard') @section('content')
1. Terms 2. Payment & ID 3. Review
@csrf

{{ $contract->type }}

Business: {{ $contract->owner }}
{{ $contract->owner_email }}
{{ $contract->owner_address }}
Customer: {{ $contract->name }}
{{ $contract->email }}
{{ $contract->phone }}
@if($contract->shopify_order_name)

Order: #{{ $contract->shopify_order_name }} ยท Total: ${{ number_format((float) $contract->amount, 2) }}

@endif
{{ $contract->terms }}
@if($contract->source === 'new' || $contract->payment_method === 'authorize.net' || $contract->payment_method === 'shopify_payments')

Credit card

@endif
@if($contract->source === 'new' || $contract->payment_method === 'shopify_payments')
@endif

Review & submit

By submitting, you authorize {{ config('ccaf.owner') }} to charge your card as described in the agreement.

Name: {{ $contract->name }}
Initials:
Signature:
@endsection