/home/kueuepay/www/resources/views/admin/components/payment-gateway/automatic/credentials.blade.php
@isset($gateway)
    <div class="gateway-content">
        <h3 class="title">{{ $gateway->title }}</h3>
        <p>{{ __("Global Setting for") }} {{ $gateway->alias }} {{ __("in bellow") }}</p>
    </div>
    @foreach ($gateway->credentials as $item)
        <div class="form-group">
            <label>{{ $item->label }}</label>
            <input type="text" class="form--control" placeholder="{{ $item->placeholder }}" name="{{ $item->name }}" value="{{ $item->value }}">
        </div>
    @endforeach
@endisset
Error Handling

Error Handling

In case of an error, the API will return an error response containing a specific error code 400, 403 Failed and a user-friendly message. Refer to our API documentation for a comprehensive list of error codes and their descriptions.