File: D:/HostingSpaces/Neopoints/momsecurity.be/resources/views/components/form/password.blade.php
@extends('components.form.layout.element')
@section('form-group-area-' . $uniqueFormElementId)
<div class="c-password @if(isset($withPreview) && $withPreview) js-password-preview @endif">
<input class="c-input c-password__input js-form-input @if(isset($withPreview) && $withPreview) js-password-preview__input @endif "
type="password"
id="{{$uniqueFormElementId}}"
name="{{$formGroupCodeName}}"
value="" />
@if(isset($withPreview) && $withPreview)
<button class="c-password__preview-button js-password-preview__button">
@lang('form.'.$formGroupCodeName.'.preview')
</button>
@endif
</div>
@endsection