| 123456789101112131415161718192021222324252627282930313233 |
- <div>
- <form action="{{route("ideas.comments.store", $idea->id)}}" method="post">
- @csrf
- <div class="mb-3">
- <textarea id="comment-content" name="content" class="fs-6 form-control" rows="1"></textarea>
- </div>
- <div>
- <button type="submit" class="btn btn-primary btn-sm"> Post Comment </button>
- </div>
- </form>
- <hr>
- <div class="d-flex align-items-start">
- <img style="width:35px" class="me-2 avatar-sm rounded-circle"
- src="https://api.dicebear.com/6.x/fun-emoji/svg?seed=Luigi"
- alt="Luigi Avatar">
- <div class="w-100">
- <div class="d-flex justify-content-between">
- <h6 class="">Luigi
- </h6>
- <small class="fs-6 fw-light text-muted"> 3 hour
- ago</small>
- </div>
- <p class="fs-6 mt-3 fw-light">
- and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and
- Evil)
- by
- Cicero, written in 45 BC. This book is a treatise on the theory of ethics,
- very
- popular during the Renaissan
- </p>
- </div>
- </div>
- </div>
|