@extends('layouts.app') @section('title', $mode === 'supplier' ? __('app.payment_to_supplier') : __('app.received_from_customer')) @section('content')

{{ $mode === 'supplier' ? __('app.payment_to_supplier') : __('app.received_from_customer') }}

{{ __('app.payment_form_hint') }}

{{ __('app.back') }}
@php($payment = $payment ?? null)
@csrf @if($payment) @method('put') @endif
1{{ __('app.party') }}
2{{ __('app.amount') }}
3{{ __('app.finish') }}
{{ __('app.party_information') }}
@if($mode === 'supplier')
@else
@endif
{{ __('app.payment_information') }}
{{ __('app.finish') }}
@endsection