{!! Theme::partial('pagemenu-settings',compact('timeline')) !!}
@include('flash::message')

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

{{ csrf_field() }}
  • {{ Form::label('timeline_post_privacy', trans('common.label_page_timeline_post_privacy'), ['class' => 'control-label']) }} {{ Form::select('timeline_post_privacy', array('everyone' => trans('common.everyone'), 'only_admins' => trans('common.admins')), $page_details->timeline_post_privacy, array('class' => 'form-control col-sm-6')) }}
  • {{ Form::label('member_privacy', trans('common.label_page_member_privacy')) }} {{ Form::select('member_privacy', array('members' => trans('common.members'), 'only_admins' => trans('common.admins')), $page_details->member_privacy, array('class' => 'form-control col-sm-6')) }}
{{ Form::submit(trans('common.save_changes'), ['class' => 'btn btn-success']) }}