@extends('layouts.admin') @section('content')

{{ __('Edit Payment Config') }}

{{ $paymentConfig->name }}

@csrf @method('PUT') @if ($errors->any())

{{ __('Please check the following errors:') }}

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach($companies as $company) @endforeach
@php $settings = $paymentConfig->settings ?? []; @endphp

{{ __('ECPay Invoice') }}

{{ __('E.SUN QR Scan') }}

{{ __('LINE Pay Direct') }}

{{ __('TapPay Integration') }}

{{ __('Merchant IDs') }}

@endsection