@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.balance.title_singular') }}
@csrf
@if($errors->has('amount'))
{{ $errors->first('amount') }}
@endif {{ trans('cruds.balance.fields.amount_helper') }}
@if($errors->has('affiliate'))
{{ $errors->first('affiliate') }}
@endif {{ trans('cruds.balance.fields.affiliate_helper') }}
@if($errors->has('type'))
{{ $errors->first('type') }}
@endif {{ trans('cruds.balance.fields.type_helper') }}
@endsection