diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index 77fd99efdfb7..59beff4735c4 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -2095,6 +2095,8 @@ $LANG = array( 'city_state_postal' => 'City/State/Postal', 'custom_field' => 'Custom Field', 'account_fields' => 'Company Fields', + 'facebook_and_twitter' => 'Facebook and Twitter', + 'facebook_and_twitter_help' => 'Follow our feeds to help support our project', ); diff --git a/resources/views/accounts/notifications.blade.php b/resources/views/accounts/notifications.blade.php index 2b1ebd4847d9..e7260784d346 100644 --- a/resources/views/accounts/notifications.blade.php +++ b/resources/views/accounts/notifications.blade.php @@ -1,7 +1,7 @@ @extends('header') -@section('content') - @parent +@section('content') + @parent @include('accounts.nav', ['selected' => ACCOUNT_NOTIFICATIONS]) @@ -19,41 +19,50 @@
{!! 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_paid')->label(' ')->text(trans('texts.email_paid')) !!} {!! Former::checkbox('notify_approved')->label(' ')->text(trans('texts.email_approved')) !!}
+
+
+

{!! trans('texts.facebook_and_twitter') !!}

+
+
- - - {!! Former::actions( + + + {!! Former::actions( Button::success(trans('texts.save')) ->submit()->large() ->appendIcon(Icon::create('floppy-disk'))) !!} - + {!! Former::close() !!} -@stop \ No newline at end of file + +@stop