@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.balanceHistory.title_singular') }}
@method('POST') @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)
@endforeach @if($errors->has('type'))
{{ $errors->first('type') }}
@endif {{ trans('cruds.balanceHistory.fields.type_helper') }}
@endsection