mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
24 lines
1.1 KiB
PHP
Executable File
24 lines
1.1 KiB
PHP
Executable File
@extends('accounts.nav')
|
|
|
|
@section('content')
|
|
@parent
|
|
|
|
{{ Former::open()->addClass('col-md-8 col-md-offset-2') }}
|
|
{{ 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::legend('Email Notifications') }}
|
|
{{ Former::checkbox('notify_sent')->label(' ')->text('Email me when an invoice is <b>sent</b>') }}
|
|
{{ Former::checkbox('notify_viewed')->label(' ')->text('Email me when an invoice is <b>viewed</b>') }}
|
|
{{ Former::checkbox('notify_paid')->label(' ')->text('Email me when an invoice is <b>paid</b>') }}
|
|
|
|
{{ Former::legend('Custom Messages') }}
|
|
{{ Former::textarea('invoice_terms')->label('Set default invoice terms') }}
|
|
{{ Former::textarea('email_footer')->label('Set default email signature') }}
|
|
|
|
{{ Former::actions( Button::lg_success_submit('Save')->append_with_icon('floppy-disk') ) }}
|
|
{{ Former::close() }}
|
|
|
|
@stop |