@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 sent') }} {{ Former::checkbox('notify_viewed')->label(' ')->text('Email me when an invoice is viewed') }} {{ Former::checkbox('notify_paid')->label(' ')->text('Email me when an invoice is paid') }} {{ Former::legend('Site Updates') }}
{{ 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