@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.transaction.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('trxid'))
{{ $errors->first('trxid') }}
@endif {{ trans('cruds.transaction.fields.trxid_helper') }}
@if($errors->has('payment_channel'))
{{ $errors->first('payment_channel') }}
@endif {{ trans('cruds.transaction.fields.payment_channel_helper') }}
@if($errors->has('merchant'))
{{ $errors->first('merchant') }}
@endif {{ trans('cruds.transaction.fields.merchant_helper') }}
@if($errors->has('merchant_trxid'))
{{ $errors->first('merchant_trxid') }}
@endif {{ trans('cruds.transaction.fields.merchant_trxid_helper') }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.transaction.fields.name_helper') }}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif {{ trans('cruds.transaction.fields.email_helper') }}
@if($errors->has('phone'))
{{ $errors->first('phone') }}
@endif {{ trans('cruds.transaction.fields.phone_helper') }}
@if($errors->has('items'))
{{ $errors->first('items') }}
@endif {{ trans('cruds.transaction.fields.items_helper') }}
@if($errors->has('amount'))
{{ $errors->first('amount') }}
@endif {{ trans('cruds.transaction.fields.amount_helper') }}
@if($errors->has('request_datetime'))
{{ $errors->first('request_datetime') }}
@endif {{ trans('cruds.transaction.fields.request_datetime_helper') }}
@if($errors->has('expire_datetime'))
{{ $errors->first('expire_datetime') }}
@endif {{ trans('cruds.transaction.fields.expire_datetime_helper') }}
@if($errors->has('easy_url'))
{{ $errors->first('easy_url') }}
@endif {{ trans('cruds.transaction.fields.easy_url_helper') }}
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.transaction.fields.status_helper') }}
@if($errors->has('paid_at'))
{{ $errors->first('paid_at') }}
@endif {{ trans('cruds.transaction.fields.paid_at_helper') }}
@if($errors->has('expired_at'))
{{ $errors->first('expired_at') }}
@endif {{ trans('cruds.transaction.fields.expired_at_helper') }}
@if($errors->has('canceled_at'))
{{ $errors->first('canceled_at') }}
@endif {{ trans('cruds.transaction.fields.canceled_at_helper') }}
@endsection