@stack($name . '_input_start')
{!! Form::label($name, $text, ['class' => 'form-control-label'])!!}
@php if ($attributes['currency']) { $value = number_format($value, $attributes['currency']->precision, $attributes['currency']->decimal_mark, $attributes['currency']->thousands_separator); } else { $value = number_format($value, 2); } @endphp {!! Form::text($name, $value, array_merge([ 'class' => 'form-control', 'data-name' => $name, 'data-value' => $value, 'v-model.lazy' => !empty($attributes['v-model']) ? $attributes['v-model'] : 'form.' . $name, 'v-money' => 'money' ], $attributes)) !!}
@stack($name . '_input_end')