{!! icon('email') !!}
{{ Form::email('email', null, [ 'class' => 'form-control form-control-lg' . ($errors->has('email') ? ' is-invalid' : ''), 'autocomplete' => 'off', 'placeholder' => __('E-mail address') ]) }} @if ($errors->has('email'))
{{ $errors->first('email') }}
@endif

{!! icon('user') !!}
{{ Form::text('name', null, [ 'class' => 'form-control form-control-sm' . ($errors->has('name') ? ' is-invalid' : ''), 'placeholder' => __('Full name (optional)') ]) }} @if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{{-- This block is to trick browser's autocompletion detection which is extremely pushy --}}

@foreach($types as $key => $value) @endforeach @if ($errors->has('type'))
{{ $errors->first('type') }}
@endif
@section('scripts') @endsection