@extends('socialite::layouts.default') @section('content')
@include("socialite::partials/usermenu-settings")

{{ trans('socialite::common.privacy_settings') }}

@include('flash::message') {{ Form::open(array('route' => ['user.settings.privacy.post', Auth::user()->username], 'class' => 'form-inline', 'method' => 'post')) }} {{ csrf_field() }}
  • {{ Form::label('confirm_follow', trans('socialite::common.label_confirm_request')) }} {{ Form::select('confirm_follow', array('yes' => trans('socialite::common.yes'), 'no' => trans('socialite::common.no')), $settings->confirm_follow, array('class' => 'form-control follow')) }}
  • {{ Form::label('follow_privacy', trans('socialite::common.label_follow_privacy')) }} {{ Form::select('follow_privacy', array('everyone' => trans('socialite::common.everyone'), 'only_follow' => trans('socialite::common.people_i_follow')), $settings->follow_privacy, array('class' => 'form-control')) }}
  • {{ Form::label('comment_privacy', trans('socialite::common.label_comment_privacy')) }} {{ Form::select('comment_privacy', array('everyone' => trans('socialite::common.everyone'), 'only_follow' => trans('socialite::common.people_i_follow')), $settings->comment_privacy, array('class' => 'form-control')) }}
  • {{ Form::label('timeline_post_privacy', trans('socialite::common.label_timline_post_privacy')) }} {{ Form::select('timeline_post_privacy', array('everyone' => trans('socialite::common.everyone'), 'only_follow' => trans('socialite::common.people_i_follow'), 'nobody' => trans('socialite::common.no_one')), $settings->timeline_post_privacy, array('class' => 'form-control')) }}
  • {{ Form::label('post_privacy', trans('socialite::common.label_post_privacy')) }} {{ Form::select('post_privacy', array('everyone' => trans('socialite::common.everyone'), 'only_follow' => trans('socialite::common.people_i_follow')), $settings->post_privacy, array('class' => 'form-control')) }}
  • {{ Form::label('message_privacy', trans('socialite::common.label_message_privacy')) }} {{ Form::select('message_privacy', array('everyone' => trans('socialite::common.everyone'), 'only_follow' => trans('socialite::common.people_i_follow')), $settings->message_privacy, array('class' => 'form-control')) }}
{{ Form::submit(trans('socialite::common.save_changes'), ['class' => 'btn btn-success']) }}
{{ Form::close() }}
@endsection