@extends('layouts.frontend') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.balanceHistory.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('user'))
{{ $errors->first('user') }}
@endif {{ trans('cruds.balanceHistory.fields.user_helper') }}
@if($errors->has('amount'))
{{ $errors->first('amount') }}
@endif {{ trans('cruds.balanceHistory.fields.amount_helper') }}
@foreach(App\Models\BalanceHistory::TYPE_RADIO as $key => $label)
type) === (string) $key ? 'checked' : '' }} required>
@endforeach @if($errors->has('type'))
{{ $errors->first('type') }}
@endif {{ trans('cruds.balanceHistory.fields.type_helper') }}
@endsection