@extends('layouts.main.app') @section('head') @include('layouts.main.headersection',[ 'title'=> __('Edit Gateway'), 'buttons'=>[ [ 'name'=>__('Back'), 'url'=>route('admin.gateways.index'), ] ]]) @endsection @section('content')
{{ __('Edit Payment Gateway') }}

{{ __('Edit gateway information for accepting payment') }}

@csrf @method('PUT')
@if ($gateway->logo != '') @endif
@if($gateway->is_auto == 1)
@endif
@if($gateway->is_auto == 1) @php $data = json_decode($gateway->data ?? '') @endphp @foreach ($data ?? [] as $key => $value)
@endforeach @endif
@endsection