timeline.blade.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. @extends('settings.template')
  2. @section('section')
  3. <div class="title">
  4. <h3 class="font-weight-bold">Timeline Settings</h3>
  5. </div>
  6. <hr>
  7. <form method="post">
  8. @csrf
  9. <div class="form-check pb-3 d-none">
  10. <input class="form-check-input" type="checkbox" name="top" {{$top ? 'checked':''}}>
  11. <label class="form-check-label font-weight-bold" for="">Show text-only posts</label>
  12. <p class="text-muted small help-text">Show text-only posts from accounts you follow. (Home timeline only)</p>
  13. </div>
  14. <div class="form-check pb-3 d-none">
  15. <input class="form-check-input" type="checkbox" name="replies" {{$replies ? 'checked':''}}>
  16. <label class="form-check-label font-weight-bold" for="">Show replies</label>
  17. <p class="text-muted small help-text">Show replies from accounts you follow. (Home timeline only)</p>
  18. </div>
  19. <div class="form-check pb-3">
  20. <input class="form-check-input" type="checkbox" name="enable_reblogs" {{$userSettings['enable_reblogs'] ? 'checked':''}}>
  21. <label class="form-check-label font-weight-bold" for="">Show reblogs</label>
  22. <p class="text-muted small help-text">See reblogs from accounts you follow in your home feed. (Home timeline only)</p>
  23. </div>
  24. <div class="form-check pb-3">
  25. <input class="form-check-input" type="checkbox" name="photo_reblogs_only" {{$userSettings['photo_reblogs_only'] ? 'checked':''}}>
  26. <label class="form-check-label font-weight-bold" for="">Photo reblogs only</label>
  27. <p class="text-muted small help-text">Only see reblogs of photos or photo albums. (Home timeline only)</p>
  28. </div>
  29. <div class="form-group row mt-5 pt-5">
  30. <div class="col-12 text-right">
  31. <hr>
  32. <button type="submit" class="btn btn-primary font-weight-bold py-0 px-5">Submit</button>
  33. </div>
  34. </div>
  35. </form>
  36. @endsection