@extends('layouts.app') @section('title', 'Create Payment Gateway') @section('description', 'Configure a new payment gateway') @section('content')
@csrf @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
@error('logo')

{{ $message }}

@enderror

API Configuration

Payment Settings

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

Cancel
@endsection