timeline.blade.php 1.0 KB

123456789101112131415161718192021222324252627282930
  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">
  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">
  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-group row mt-5 pt-5">
  20. <div class="col-12 text-right">
  21. <hr>
  22. <button type="submit" class="btn btn-primary font-weight-bold py-0 px-5">Submit</button>
  23. </div>
  24. </div>
  25. </form>
  26. @endsection