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