@extends('layout.master') @section('title', 'Edit Transaction') @section('content')

Edit transaction

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
Choose a new file only if you want to replace the existing proof.
@if ($transaction->proof) @php $ext = pathinfo($transaction->proof, PATHINFO_EXTENSION); @endphp @if (in_array(strtolower($ext), ['jpg', 'jpeg', 'png'])) Payment proof @else View PDF @endif @else No proof uploaded yet. @endif
Cancel
@endsection