{{ Form::customText('enteredAt', \App\Localization\CarbonExtensions::toUserLocal($entry->entered_at), ['class' => 'form-control datetimepicker-control', 'disabled' => 'disabled']) }}
{{ Form::customSelect('currency', $currencies, $entry->currency_id) }}
{{ Form::customText('beginningBalance', $entry->beginning_balance) }}
{{ Form::customText('debit', $entry->debit == 0 ? "" : $entry->debit) }}
{{ Form::customText('credit', $entry->credit == 0 ? "" : $entry->credit) }}
{{ Form::customText('endingBalance', $entry->ending_balance) }}
{{ Form::customText('comment', $entry->comment) }}