@extends('layouts.admin') @section('title', 'Edit Payment Method') @section('content')
@php $photoUrl = !empty($payment_method->photo) ? asset($payment_method->photo) : null; @endphp {{-- Header --}}

Edit Payment Method

payment method এর তথ্য আপডেট করুন।

Back
{{-- Toast --}} @if(session('success') || session('error')) @endif
@if ($errors->any())
Please fix the following errors:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
@if($photoUrl)
Current Logo
{{ $payment_method->name }}
@endif

নতুন ছবি দিলে পুরনো ছবি replace হবে

Cancel
@endsection @push('scripts') @endpush