@extends('backend.layouts.form') @section('title', __('Edit | ') . $gateway->name) @section('section', __('Settings')) @section('back', route('admin.settings.gateways.index')) @section('content')
@csrf @method('PUT')
{{ __('Allowed (PNG, JPG, JPEG) Size (300x100)') }}
status) checked @endif>
@if (!is_null($gateway->test_mode))
test_mode) checked @endif>
@endif
{{ $gateway->name . __(' Credentials') }}
@foreach ($gateway->credentials as $key => $value)
@endforeach
@if ($gateway->instructions)
{{ $gateway->name . __(' Instructions') }}
{!! str_replace('[URL]', url('/'), $gateway->instructions) !!}
@endif
@endsection