File: D:/HostingSpaces/SBogers10/csb.komma.pro/resources/views/organisms/forms/quotation.blade.php
<form method="post" class="o-form" action="{{route("quotation.process")}}" id="quotationForm">
@if( !\App::environment('production') ) {{debug($errors)}} @endif
{{ csrf_field() }}
<h3 class="o-form__title">@lang('site/quotation.form_title')</h3>
@if ($errors->any())
<ul class="c-form-feedback" data-feedback="@lang('site/quotation.feedback_message')">
@foreach ($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
@endif
{{-- To prevent to pass the variable to each form element individually we already name it here --}}
@php $formElementNoErrorArea = true @endphp
@if(!isset($send))
<div class="o-form__body">
<div class="o-form__row">
@include('components.form.text', ['formElementCodeName' => 'name'])
</div>
<div class="o-form__row">
@include('components.form.email', ['formElementCodeName' => 'email'])
</div>
<div class="o-form__row">
@include('components.form.text', ['formElementCodeName' => 'phone'])
</div>
<div class="o-form__row">
@include('components.form.textarea', ['formElementCodeName' => 'form_message'])
</div>
<div class="o-form__submit">
{{-- NOTE: We don't use a button to prevent bots from clicking on it --}}
<button class="c-button c-button--icon" type="submit">
<span class="c-button__text">@lang('site/form.send')</span>
<i class="c-button__icon">@include('components.icons.arrow')</i>
</button>
</div>
</div>
</div>
@else
<p>@lang('site/form.sent')</p><br>
@endif
</form>