123456789101112131415161718192021222324252627282930313233343536373839404142 |
- @extends('settings.template')
- @section('section')
- <div class="title">
- <h3 class="font-weight-bold">Timeline Settings</h3>
- </div>
- <hr>
- <form method="post">
- @csrf
- <div class="form-check pb-3 d-none">
- <input class="form-check-input" type="checkbox" name="top" {{$top ? 'checked':''}}>
- <label class="form-check-label font-weight-bold" for="">Show text-only posts</label>
- <p class="text-muted small help-text">Show text-only posts from accounts you follow. (Home timeline only)</p>
- </div>
- <div class="form-check pb-3 d-none">
- <input class="form-check-input" type="checkbox" name="replies" {{$replies ? 'checked':''}}>
- <label class="form-check-label font-weight-bold" for="">Show replies</label>
- <p class="text-muted small help-text">Show replies from accounts you follow. (Home timeline only)</p>
- </div>
- <div class="form-check pb-3">
- <input class="form-check-input" type="checkbox" name="enable_reblogs" {{$userSettings['enable_reblogs'] ? 'checked':''}}>
- <label class="form-check-label font-weight-bold" for="">Show reblogs</label>
- <p class="text-muted small help-text">See reblogs from accounts you follow in your home feed. (Home timeline only)</p>
- </div>
- <div class="form-check pb-3">
- <input class="form-check-input" type="checkbox" name="photo_reblogs_only" {{$userSettings['photo_reblogs_only'] ? 'checked':''}}>
- <label class="form-check-label font-weight-bold" for="">Photo reblogs only</label>
- <p class="text-muted small help-text">Only see reblogs of photos or photo albums. (Home timeline only)</p>
- </div>
- <div class="form-group row mt-5 pt-5">
- <div class="col-12 text-right">
- <hr>
- <button type="submit" class="btn btn-primary font-weight-bold py-0 px-5">Submit</button>
- </div>
- </div>
- </form>
- @endsection
|