@extends('socialite::layouts.admin') @section('content')

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

@include('flash::message')
{{ csrf_field() }}
  • {{ Form::label('confirm_follow', trans('socialite::admin.confirm_follow')) }} {{ Form::select('confirm_follow', array('yes' => trans('socialite::common.yes'), 'no' => trans('socialite::common.no')), Setting::get('confirm_follow', 'no'), array('class' => 'form-control follow')) }}
  • {{ Form::label('follow_privacy', trans('socialite::admin.follow_privacy')) }} {{ Form::select('follow_privacy', array('everyone' => trans('socialite::common.everyone'), 'only_follow' => trans('socialite::admin.only_follow')), Setting::get('follow_privacy', 'everyone'), array('class' => 'form-control')) }}
  • {{ Form::label('comment_privacy', trans('socialite::admin.comment_privacy')) }} {{ Form::select('comment_privacy', array('everyone' => trans('socialite::common.everyone'), 'only_follow' => trans('socialite::admin.only_follow')), Setting::get('comment_privacy', 'everyone'), array('class' => 'form-control')) }}
  • {{ Form::label('user_timeline_post_privacy', trans('socialite::admin.user_timeline_post_privacy')) }} {{ Form::select('user_timeline_post_privacy', array('everyone' => trans('socialite::common.everyone'), 'only_follow' => trans('socialite::admin.only_follow'), 'nobody' => trans('socialite::common.no_one')), Setting::get('user_timeline_post_privacy', 'everyone'), array('class' => 'form-control')) }}
  • {{ Form::label('post_privacy', trans('socialite::admin.post_privacy')) }} {{ Form::select('post_privacy', array('everyone' => trans('socialite::common.everyone'), 'only_follow' => trans('socialite::admin.only_follow')), Setting::get('post_privacy', 'everyone'), array('class' => 'form-control')) }}
  • {{ Form::label('user_message_privacy', trans('socialite::admin.user_message_privacy')) }} {{ Form::select('user_message_privacy', array('everyone' => trans('socialite::common.everyone'), 'only_follow' => trans('socialite::admin.only_follow')), Setting::get('user_message_privacy', 'everyone'), array('class' => 'form-control')) }}

{{ trans('socialite::admin.add_custom_fields_for_user') }}


{{ Form::label('custom_option1', trans('socialite::admin.custom_option1')) }} {{ Form::text('custom_option1', Setting::get('custom_option1'), array('class' => 'form-control','placeholder' => trans('socialite::admin.custom_option_placeholder'))) }}
{{ Form::label('custom_option2', trans('socialite::admin.custom_option2')) }} {{ Form::text('custom_option2', Setting::get('custom_option2'), array('class' => 'form-control','placeholder' => trans('socialite::admin.custom_option_placeholder'))) }}
{{ Form::label('custom_option3', trans('socialite::admin.custom_option3')) }} {{ Form::text('custom_option3', Setting::get('custom_option3'), array('class' => 'form-control','placeholder' => trans('socialite::admin.custom_option_placeholder'))) }}
{{ Form::label('custom_option4', trans('socialite::admin.custom_option4')) }} {{ Form::text('custom_option4', Setting::get('custom_option4'), array('class' => 'form-control','placeholder' => trans('socialite::admin.custom_option_placeholder'))) }}
{{ Form::submit(trans('socialite::common.save_changes'), ['class' => 'btn btn-success']) }}
{{ Form::close() }}
@endsection