mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 20:37:29 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			69 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
@extends('header')
 | 
						|
 | 
						|
@section('content')
 | 
						|
	@parent
 | 
						|
 | 
						|
    @include('accounts.nav', ['selected' => ACCOUNT_NOTIFICATIONS])
 | 
						|
 | 
						|
	{!! Former::open()->addClass('warn-on-exit') !!}
 | 
						|
	{{ Former::populate($account) }}
 | 
						|
	{{ Former::populateField('notify_sent', intval(Auth::user()->notify_sent)) }}
 | 
						|
	{{ Former::populateField('notify_viewed', intval(Auth::user()->notify_viewed)) }}
 | 
						|
	{{ Former::populateField('notify_paid', intval(Auth::user()->notify_paid)) }}
 | 
						|
    {{ Former::populateField('notify_approved', intval(Auth::user()->notify_approved)) }}
 | 
						|
 | 
						|
    <div class="panel panel-default">
 | 
						|
      <div class="panel-heading">
 | 
						|
        <h3 class="panel-title">{!! trans('texts.email_notifications') !!}</h3>
 | 
						|
      </div>
 | 
						|
        <div class="panel-body">
 | 
						|
    	{!! Former::checkbox('notify_sent')->label(' ')->text(trans('texts.email_sent')) !!}
 | 
						|
    	{!! Former::checkbox('notify_viewed')->label(' ')->text(trans('texts.email_viewed')) !!}
 | 
						|
        {!! Former::checkbox('notify_paid')->label(' ')->text(trans('texts.email_paid')) !!}
 | 
						|
        {!! Former::checkbox('notify_approved')->label(' ')->text(trans('texts.email_approved')) !!}
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div class="panel panel-default">
 | 
						|
      <div class="panel-heading">
 | 
						|
        <h3 class="panel-title">{!! trans('texts.facebook_and_twitter') !!}</h3>
 | 
						|
      </div>
 | 
						|
        <div class="panel-body">
 | 
						|
 | 
						|
 | 
						|
            <div class="form-group">
 | 
						|
                <label for="notify_sent" class="control-label col-lg-4 col-sm-4"> </label>
 | 
						|
                <div class="col-lg-8 col-sm-8">
 | 
						|
 | 
						|
                    <div id="fb-root"></div>
 | 
						|
                    <script>(function(d, s, id) {
 | 
						|
                        var js, fjs = d.getElementsByTagName(s)[0];
 | 
						|
                        if (d.getElementById(id)) return;
 | 
						|
                        js = d.createElement(s); js.id = id;
 | 
						|
                        js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=635126583203143";
 | 
						|
                        fjs.parentNode.insertBefore(js, fjs);
 | 
						|
                    }(document, 'script', 'facebook-jssdk'));</script>
 | 
						|
 | 
						|
                    <div class="fb-follow" data-href="https://www.facebook.com/invoiceninja" data-colorscheme="light" data-layout="button" data-show-faces="false" data-size="large"></div>  
 | 
						|
 | 
						|
                    <a href="https://twitter.com/invoiceninja" class="twitter-follow-button" data-show-count="false" data-related="hillelcoren" data-size="large">Follow @invoiceninja</a>
 | 
						|
                    <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
 | 
						|
 | 
						|
                    <div class="help-block">{{ trans('texts.facebook_and_twitter_help') }}</div>
 | 
						|
 | 
						|
                </div>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
 | 
						|
 | 
						|
    {!! Former::actions(
 | 
						|
            Button::success(trans('texts.save'))
 | 
						|
                ->submit()->large()
 | 
						|
                ->appendIcon(Icon::create('floppy-disk'))) !!}
 | 
						|
 | 
						|
	{!! Former::close() !!}
 | 
						|
 | 
						|
 | 
						|
@stop
 |