1
0

comment.blade.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. @extends('layouts.app')
  2. @section('content')
  3. <div class="container px-0 mt-0 mt-md-4 mb-md-5 pb-md-5">
  4. <div class="col-12 px-0 col-md-8 offset-md-2">
  5. <div class="card">
  6. <div class="card-header lead font-weight-bold bg-white">
  7. Report Sensitive Comment
  8. </div>
  9. <div class="card-body">
  10. <div class="row">
  11. <div class="col-12 col-md-10 offset-md-1 my-3">
  12. <form method="post" action="{{route('report.form')}}">
  13. @csrf
  14. <input type="hidden" name="report" value="sensitive"></input>
  15. <input type="hidden" name="type" value="{{request()->query('type')}}"></input>
  16. <input type="hidden" name="id" value="{{request()->query('id')}}"></input>
  17. <div class="form-group row">
  18. <label class="col-sm-3 col-form-label font-weight-bold text-right">Message</label>
  19. <div class="col-sm-9">
  20. <textarea class="form-control" name="msg" placeholder="Add an optional message for mods/admins" rows="4"></textarea>
  21. </div>
  22. </div>
  23. <hr>
  24. <div class="form-group row">
  25. <div class="col-12">
  26. <button type="submit" class="btn btn-primary btn-block font-weight-bold">Submit</button>
  27. </div>
  28. </div>
  29. </form>
  30. </div>
  31. <div class="col-12 col-md-8 offset-md-2">
  32. <p><a class="font-weight-bold" href="#">
  33. Learn more
  34. </a> about our reporting guidelines and policy.</p>
  35. </div>
  36. </div>
  37. </div>
  38. </div>
  39. </div>
  40. </div>
  41. @endsection