@extends('admin.layouts.app') @section('title') {{ $page_title }} @endsection @section('content')
@if ($errors->any())
@endif
@csrf @method('put')
Edit {{ strtoupper($method->name) }}
Please fill in the payment method name
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
Please fill in the currency
@if ($errors->has('currency')) {{ $errors->first('currency') }} @endif
Please fill in the currency symbol
@if ($errors->has('currency_symbol')) {{ $errors->first('currency_symbol') }} @endif
1 {{ $basic->currency ?? 'USD' }} =
Please fill in the convention rate
@if ($errors->has('convention_rate')) {{ $errors->first('currency_symbol') }} @endif
{{ $basic->currency ?? 'USD' }}
Please fill in the minimum deposit amount
@if ($errors->has('minimum_deposit_amount')) {{ $errors->first('minimum_deposit_amount') }} @endif
{{ $basic->currency ?? 'USD' }}
Please fill in the maximum deposit amount
@if ($errors->has('maximum_deposit_amount')) {{ $errors->first('maximum_deposit_amount') }} @endif
%
Please fill in the percentage charge
@if ($errors->has('percentage_charge')) {{ $errors->first('percentage_charge') }} @endif
{{ $basic->currency ?? 'USD' }}
Please fill in the fixed charge
@if ($errors->has('fixed_charge')) {{ $errors->first('fixed_charge') }} @endif
@foreach ($method->parameters as $key => $parameter)
Please fill in the {{ str_replace('_',' ', $key) }}
@if ($errors->has($key)) {{ $errors->first($key) }} @endif
@endforeach
@if($method->extra_parameters)
@foreach($method->extra_parameters as $key => $param)
@endforeach
@endif
preview image
@error('image') {{ $message }} @enderror
@endsection @push('js') @endpush