@extends('layouts.app') @section('title', 'Edit Payment Gateway') @section('description', 'Update payment gateway details') @section('content')
@csrf @method('PUT') @if ($errors->any())

There were {{ $errors->count() }} error(s) with your submission:

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Basic Information

@error('name')

{{ $message }}

@enderror
@error('display_name')

{{ $message }}

@enderror
@error('description')

{{ $message }}

@enderror
@if($gateway->logo)
{{ $gateway->name }}

Current logo

@endif @error('logo')

{{ $message }}

@enderror

API Configuration

Payment Settings

Amount in smallest currency unit (e.g., cents for USD)

is_active) ? 'checked' : '' }} class="w-4 h-4 text-blue-600 bg-gray-100 border-gray-300 rounded focus:ring-blue-500 dark:focus:ring-blue-600 dark:ring-offset-gray-800 focus:ring-2 dark:bg-gray-700 dark:border-gray-600">
Cancel
@endsection