mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
24 lines
972 B
PHP
24 lines
972 B
PHP
|
@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') }}
|
||
|
{{ Former::textarea('email_footer') }}
|
||
|
|
||
|
{{ Former::actions( Button::lg_primary_submit('Save') ) }}
|
||
|
{{ Former::close() }}
|
||
|
|
||
|
@stop
|