@extends('layouts.frontend') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.transaction.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('trx'))
{{ $errors->first('trx') }}
@endif {{ trans('cruds.transaction.fields.trx_helper') }}
@if($errors->has('user_uuid'))
{{ $errors->first('user_uuid') }}
@endif {{ trans('cruds.transaction.fields.user_uuid_helper') }}
@if($errors->has('bike'))
{{ $errors->first('bike') }}
@endif {{ trans('cruds.transaction.fields.bike_helper') }}
@if($errors->has('borrow_terminal'))
{{ $errors->first('borrow_terminal') }}
@endif {{ trans('cruds.transaction.fields.borrow_terminal_helper') }}
@if($errors->has('return_terminal'))
{{ $errors->first('return_terminal') }}
@endif {{ trans('cruds.transaction.fields.return_terminal_helper') }}
@if($errors->has('amount'))
{{ $errors->first('amount') }}
@endif {{ trans('cruds.transaction.fields.amount_helper') }}
@if($errors->has('paid_amount'))
{{ $errors->first('paid_amount') }}
@endif {{ trans('cruds.transaction.fields.paid_amount_helper') }}
@if($errors->has('duration'))
{{ $errors->first('duration') }}
@endif {{ trans('cruds.transaction.fields.duration_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('externalapi'))
{{ $errors->first('externalapi') }}
@endif {{ trans('cruds.transaction.fields.externalapi_helper') }}
@endsection