@stack($name . '_input_start')
@if (!empty($text)) {!! Form::label($name, $text, ['class' => 'form-control-label'])!!} @endif
@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'] : (!empty($attributes['data-field']) ? 'form.' . $attributes['data-field'] . '.'. $name : 'form.' . $name), 'v-money' => 'money', ], $attributes)) !!}
@stack($name . '_input_end')