@extends('layouts.frontend') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.transaction.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.transaction.fields.status_helper') }}
@if($errors->has('amount'))
{{ $errors->first('amount') }}
@endif {{ trans('cruds.transaction.fields.amount_helper') }}
@if($errors->has('payment_method'))
{{ $errors->first('payment_method') }}
@endif {{ trans('cruds.transaction.fields.payment_method_helper') }}
@if($errors->has('paid_at'))
{{ $errors->first('paid_at') }}
@endif {{ trans('cruds.transaction.fields.paid_at_helper') }}
@if($errors->has('paid_amount'))
{{ $errors->first('paid_amount') }}
@endif {{ trans('cruds.transaction.fields.paid_amount_helper') }}
@if($errors->has('user'))
{{ $errors->first('user') }}
@endif {{ trans('cruds.transaction.fields.user_helper') }}
@if($errors->has('ref'))
{{ $errors->first('ref') }}
@endif {{ trans('cruds.transaction.fields.ref_helper') }}
@endsection