@extends('layouts.app') @section('title', 'Edit Payment') @section('content')

Edit Payment

Update payment information.

Edit Payment #{{ $payment->payment_id }}

@if(session('error'))
{{ session('error') }}
@endif @if($errors->any())
Please fix the following errors:
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
Rs.
Cancel
@endsection