@extends('header') @section('head') @parent @stop @section('content') @parent @include('accounts.nav', ['selected' => ACCOUNT_INVOICE_SETTINGS, 'advanced' => true]) {!! Former::open()->addClass('warn-on-exit') !!} {{ Former::populate($account) }} {{ Former::populateField('custom_invoice_taxes1', intval($account->custom_invoice_taxes1)) }} {{ Former::populateField('custom_invoice_taxes2', intval($account->custom_invoice_taxes2)) }} {{ Former::populateField('share_counter', intval($account->share_counter)) }} {{ Former::populateField('pdf_email_attachment', intval($account->pdf_email_attachment)) }}

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

{!! Former::checkbox('pdf_email_attachment')->text(trans('texts.enable')) !!} @if (Utils::isNinja()) {!! Former::inline_radios('custom_invoice_link') ->onchange('onCustomLinkChange()') ->radios([ trans('texts.subdomain') => ['value' => 'subdomain', 'name' => 'custom_link'], trans('texts.website') => ['value' => 'website', 'name' => 'custom_link'], ])->check($account->iframe_url ? 'website' : 'subdomain') !!} {{ Former::setOption('capitalize_translations', false) }} {!! Former::text('subdomain') ->placeholder(trans('texts.www')) ->onchange('onSubdomainChange()') ->addGroupClass('subdomain') ->label(' ') !!} {!! Former::text('iframe_url') ->placeholder('http://www.example.com/invoice') ->appendIcon('question-sign') ->addGroupClass('iframe_url') ->label(' ') !!} @endif

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

{!! Former::text('invoice_number_prefix')->label(trans('texts.prefix')) !!} {!! Former::text('invoice_number_counter')->label(trans('texts.counter')) !!}
{!! Former::text('quote_number_prefix')->label(trans('texts.prefix')) !!} {!! Former::text('quote_number_counter')->label(trans('texts.counter')) ->append(Former::checkbox('share_counter')->raw()->onclick('setQuoteNumberEnabled()') . ' ' . trans('texts.share_invoice_counter')) !!}

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

{!! Former::text('custom_client_label1')->label(trans('texts.field_label')) !!} {!! Former::text('custom_client_label2')->label(trans('texts.field_label')) !!}
{!! Former::text('custom_label1')->label(trans('texts.field_label')) !!} {!! Former::text('custom_value1')->label(trans('texts.field_value')) !!}

 

{!! Former::text('custom_label2')->label(trans('texts.field_label')) !!} {!! Former::text('custom_value2')->label(trans('texts.field_value')) !!}
{!! Former::text('custom_invoice_text_label1')->label(trans('texts.field_label')) !!} {!! Former::text('custom_invoice_text_label2')->label(trans('texts.field_label')) !!}
{!! Former::text('custom_invoice_label1')->label(trans('texts.field_label')) ->append(Former::checkbox('custom_invoice_taxes1')->raw() . trans('texts.charge_taxes')) !!} {!! Former::text('custom_invoice_label2')->label(trans('texts.field_label')) ->append(Former::checkbox('custom_invoice_taxes2')->raw() . trans('texts.charge_taxes')) !!}
@if (Auth::user()->isPro())
{!! Button::success(trans('texts.save'))->large()->submit()->appendIcon(Icon::create('floppy-disk')) !!}
@endif {!! Former::close() !!} @stop @section('onReady') $('#custom_invoice_label1').focus(); @stop