2020-06-29 12:08:26 +00:00
|
|
|
@extends("app.layout.base")
|
|
|
|
|
|
|
|
@section("title")
|
|
|
|
Feedback - Ris/Ros
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("content")
|
2020-08-05 05:51:30 +00:00
|
|
|
<main style="min-height: calc(100% - 61.34px)" class="text-center">
|
2020-06-30 06:35:40 +00:00
|
|
|
<form action="{{ action('FeedbackController@store') }}" method="post">
|
|
|
|
@csrf
|
2020-06-29 12:08:26 +00:00
|
|
|
<span>Ris el. Ros?</span>
|
2020-06-30 06:35:40 +00:00
|
|
|
<select name="suggestion_form" class="mb-2" required>
|
2020-06-29 12:08:26 +00:00
|
|
|
<option>Ros</option>
|
|
|
|
<option>Ris</option>
|
|
|
|
</select>
|
2020-08-05 11:29:45 +00:00
|
|
|
<textarea name="message" placeholder="Skriv Ris/Ros besked her" style="resize: vertical;" required></textarea>
|
2020-06-30 06:35:40 +00:00
|
|
|
<button type="submit" class="btn btn-sde-blue mt-2">Send Ris/Ros</button>
|
2020-06-29 12:08:26 +00:00
|
|
|
</form>
|
|
|
|
</main>
|
|
|
|
@endsection
|