@stack($name . '_input_start')
{!! Form::label($name, $text, ['class' => 'form-control-label']) !!}
{!! Form::text($input_name, $input_value, [ 'class' => 'form-control', 'data-name' => $input_name, 'data-value' => $input_value, 'placeholder' => trans('general.form.enter', ['field' => $text]), 'v-model' => !empty($attributes['v-model']) ? $attributes['v-model'] : 'form.' . $input_name ]) !!}
@stack($name . '_input_end')