{!! Theme::partial('usermenu-settings') !!}

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

@include('flash::message') {{ Form::open(array('class' => 'form-inline','url' => Auth::user()->username.'/settings/notifications', 'method' => 'post')) }} {{ csrf_field() }}
  • {{ Form::label('email_follow', trans('common.label_email_follow')) }} {{ Form::select('email_follow', array('yes' => trans('common.yes'), 'no' => 'No'), $userSettings->email_follow, array('class' => 'form-control')) }}
  • {{ Form::label('email_like_post', trans('common.label_email_like_post')) }} {{ Form::select('email_like_post', array('yes' => trans('common.yes'), 'no' => 'No'), $userSettings->email_like_post, array('class' => 'form-control')) }}
  • {{ Form::label('email_post_share', trans('common.label_email_post_share')) }} {{ Form::select('email_post_share', array('yes' => trans('common.yes'), 'no' => 'No'), $userSettings->email_post_share, array('class' => 'form-control')) }}
  • {{ Form::label('email_comment_post', trans('common.label_email_comment')) }} {{ Form::select('email_comment_post', array('yes' => trans('common.yes'), 'no' => trans('common.no')), $userSettings->email_comment_post, array('class' => 'form-control')) }}
  • {{ Form::label('email_like_comment', trans('common.label_email_like_comment')) }} {{ Form::select('email_like_comment', array('yes' => trans('common.yes'), 'no' => trans('common.no')), $userSettings->email_like_comment, array('class' => 'form-control')) }}
  • {{ Form::label('email_reply_comment', trans('common.label_email_reply_comment')) }} {{ Form::select('email_reply_comment', array('yes' => trans('common.yes'), 'no' => trans('common.no')), $userSettings->email_reply_comment, array('class' => 'form-control')) }}
  • {{ Form::label('email_join_group', trans('common.label_email_join_group')) }} {{ Form::select('email_join_group', array('yes' => trans('common.yes'), 'no' => trans('common.no')), $userSettings->email_join_group, array('class' => 'form-control')) }}
  • {{ Form::label('email_like_page', trans('common.label_email_like_page')) }} {{ Form::select('email_like_page', array('yes' => trans('common.yes'), 'no' => trans('common.no')), $userSettings->email_like_page, array('class' => 'form-control')) }}
{{ Form::submit(trans('common.save_changes'), ['class' => 'btn btn-success']) }}
{{ Form::close() }}