@extends('layouts.app') @section('css') @endsection @section('page-header') @endsection @section('content')

{{ __('Setup Payment Settings') }}

@csrf
{{ __('Payment Options') }}
{{ __('Tax Rate') }} (%)
@error('tax')

{{ $errors->first('tax') }}

@enderror
{{ __('Default Currency') }} ({{ __('Payments/Plans/System/Payouts') }}) ({{ __('Except Estimated Spendings') }})
@error('currency')

{{ $errors->first('currency') }}

@enderror
PayPal Payment
PayPal Client ID
@error('paypal_client_id')

{{ $errors->first('paypal_client_id') }}

@enderror
PayPal Client Secret
@error('paypal_client_secret')

{{ $errors->first('paypal_client_secret') }}

@enderror
Paypal Webhook URI
@error('paypal_webhook_uri')

{{ $errors->first('paypal_webhook_uri') }}

@enderror
Paypal Webhook ID
@error('paypal_webhook_id')

{{ $errors->first('paypal_webhook_id') }}

@enderror
PayPal Base URI
@error('paypal_base_uri')

{{ $errors->first('paypal_base_uri') }}

@enderror
Stripe Payment
Stripe Key
@error('stripe_key')

{{ $errors->first('stripe_key') }}

@enderror
Stripe Secret Key
@error('stripe_secret_key')

{{ $errors->first('stripe_secret_key') }}

@enderror
Stripe Webhook URI
@error('stripe_webhook_uri')

{{ $errors->first('stripe_webhook_uri') }}

@enderror
Stripe Webhook SECRET
@error('stripe_webhook_secret')

{{ $errors->first('stripe_webhook_secret') }}

@enderror
Stripe Base URI
@error('stripe_base_uri')

{{ $errors->first('stripe_base_uri') }}

@enderror
{{ __('Bank Transfer Payment') }} ({{ __('Offline Payment') }})
Customer Payment Intructions
@error('bank_instructions')

{{ $errors->first('bank_instructions') }}

@enderror
Bank Account Requisites
@error('bank_requisites')

{{ $errors->first('bank_requisites') }}

@enderror
{{ __('Cancel') }}
@endsection @section('js') @endsection