Skip to content

Commit

Permalink
resolve #15 Pengguna dapat memberikan feedback #15
Browse files Browse the repository at this point in the history
pada flle tersebut, terdapat kodingan untuk pengguna agar dapat memberikan feedback
  • Loading branch information
fahmysyhptr authored Apr 23, 2021
1 parent 1b5601d commit 03763a7
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions feedback.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!doctype html>
<html lang="en">

<head>
@include("layout.head")
</head>

<body>
@include("layout.nav")

<div class="container mt-5">
<h2 class="mb-3">Kirim Feedback</h2>
<form method="post" action="{{route("kirimfeedback")}}">
@csrf
<input type="hidden" name="id_pengguna" value="{{$pengguna->id}}">

<div class="mb-3">
{{-- <label for="exampleFormControlTextarea1" class="form-label">Feedback</label> --}}
<textarea required name="feedback" class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
</div>

<button class="btn btn-primary">Kirim</button>
</form>
</div>

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
</body>

</html>

0 comments on commit 03763a7

Please sign in to comment.