HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/timentessagaantrouwen.nl/resources/views/templates/questions.blade.php
@extends('master')

@section('content')

    <div class="t-questions">
        <div class="c-body  c-body--shadow  l-contain">

            @include('organisms.intro')

        </div>

        <div class="t-questions__decoration">
            @include('components.icons.organiment2')
        </div>

        <div class="c-body  c-body--shadow  t-questions__form  l-contain">
            <form class="o-form"  id="questionForm" method="POST" action="{{ route('questions.store') }}">
                @csrf

{{--                @if(isset($filled) && $filled)--}}
{{--                    <p class="o-form__prefilled">--}}
{{--                        Je hebt het formulier al een keer ingevuld,<br/>--}}
{{--                        vanuit deze informatie hebben we de velden al ingevuld.--}}
{{--                    </p>--}}
{{--                @endif--}}

                @if(auth()->user()->username == 'clapau')
                    <h3>Speciaal voor Claire</h3>
                    <img alt="pink elephant" src="/img/pink_elephant.jpg" width="300px" />
                @endif

                @include('organisms.form.userType'.auth()->user()->user_type)

                <div class="o-form__submit">

                    @include('components.form.submit', ['formElementValue' => __('form.send')])

                </div>

            </form>
        </div>

    </div>

@endsection