@extends('admin.layouts.form') @section('section', translate('Financial')) @section('title', translate('Edit Payment Gateway')) @section('back', route('admin.financial.payment-gateways.index')) @section('container', 'container-max-lg') @section('content')
@csrf
{{ translate('Allowed (PNG, JPG, JPEG, WEBP)') }}
isActive() ? 'checked' : '' }}>
@if (!$paymentGateway->isAccountBalance()) @if ($paymentGateway->mode)
@endif
@endif
@if (!$paymentGateway->isAccountBalance()) @if (!$paymentGateway->isManual())
{{ translate('Charge Currency') }}
@include('admin.partials.input-price', [ 'value' => 1, 'disabled' => true, ])
=
{{ translate('Use this in case you want to charge users with different currency or the gateway does not support your website currency') }}
@endif @if ($paymentGateway->parameters)
{{ translate('Parameters') }}
@foreach ($paymentGateway->parameters as $key => $parameter)
@if ($parameter->type == 'route')
@else
@endif
@endforeach
@endif
@if (!$paymentGateway->isManual())
{{ translate('Credentials') }}
@foreach ($paymentGateway->credentials as $key => $value)
@endforeach
@else
{{ translate('Instructions') }}
@endif
@endif
@push('scripts_libs') @endpush @include('admin.partials.ckeditor') @endsection