@extends('backend.layouts.form') @section('section', admin_trans('Premium')) @section('title', admin_trans('Payment Gateways') . ' | ' . $paymentGateway->name) @section('container', 'container-max-lg') @section('back', route('admin.premium.payment-gateways.index')) @section('content')
@csrf @method('PUT')
{{ admin_trans('Details') }}
{{ admin_trans('Allowed (PNG, JPG, JPEG)') }}
status ? 'checked' : '' }}>
@if ($paymentGateway->description)
{{ admin_trans('Description') }}
{!! str_replace('[URL]', url('/'), $paymentGateway->description) !!}
@endif @if (!$paymentGateway->isManual())
{{ admin_trans('Credentials') }}
@foreach ($paymentGateway->credentials as $key => $value)
@endforeach
@else @if ($paymentGateway->alias != 'balance')
{{ admin_trans('Instructions') }}
@endif @endif
@push('scripts_libs') @endpush @endsection