{!! Form::decimal('amount')
-> label(trans('litecm::other_income.label.amount'))
-> required()
-> placeholder(trans('litecm::other_income.placeholder.amount'))!!}
{!! Form::select('client_id')
-> fromQuery(\Bonus\Litecm\Models\OtherIncome::all(), 'name', 'id')
-> label(trans('litecm::other_income.label.client_id'))
-> placeholder(trans('litecm::other_income.placeholder.client_id'))!!}
{!! Form::text('description')
-> label(trans('litecm::other_income.label.description'))
-> required()
-> placeholder(trans('litecm::other_income.placeholder.description'))!!}
{!! Form::hidden('transaction_type')
-> label(trans('litecm::other_income.label.transaction_type'))
-> placeholder(trans('litecm::other_income.placeholder.transaction_type'))!!}