@section('page_name') System configuration @stop @section('breadcrumbs') System System Settings @stop @section('scripts') @stop @section('stylesheets') @stop @section('content')
System configuration
{{ Form::model($_ENV['settings'], array('files' => true)) }}

General settings

Application name {{ Form::text('app_name') }}
New logo {{ Form::file('logo') }}
New icon (1:1 ratio) {{ Form::file('icon') }}
Chat enabled {{ Form::hidden('chatEnabled', 0) }} {{ Form::checkbox('chatEnabled', 1) }}


Current Logo

Current Icon

Current logo Current icon

Customer Settings

Notes Name {{ Form::text('notes1Name') }}
Secondary Notes Name {{ Form::text('notes2Name') }}

Quotes & Invoices

Default Vat {{ Form::select('defaultVat', Vat::all()->lists('type', 'id')) }}
Default Job Status {{ Form::select('defaultJobStatus', JobStatus::all()->lists('type', 'id')) }}
Default advertisement type {{ Form::select('defaultAdType', AdType::all()->lists('type', 'id')) }}
IRPF {{ Form::checkbox('invoiceHasIrpf') }} Invoices have IRPF
Visit date {{ Form::checkbox('quoteHasVisitDate') }} Quote entries have visit date
Enable job monitoring {{ Form::checkbox('jobMonitoringEnabled') }} Enabled
Default Bank Charge {{ Form::text('defaultDirectDebitBankCharge', null, array('class' => 'euro', 'style' => 'width: 100px !important;')) }}
Payment job status(ses) {{ Form::select('awaitingPaymentJobStatusses[]', JobStatus::all()->lists('type', 'id'), explode(',', Settings::setting('awaitingPaymentJobStatusses')), array('class' => 'select2', 'multiple' => 'multiple')) }}
Completed job status(ses) {{ Form::select('completedJobStatusses[]', JobStatus::all()->lists('type', 'id'), explode(',', Settings::setting('completedJobStatusses')), array('class' => 'select2', 'multiple' => 'multiple')) }}

Email settings

Quote email template {{ Form::textarea('quoteEmailTemplate', null, array('style' => 'height:200px;'))}}
Invoice email template {{ Form::textarea('invoiceEmailTemplate', null, array('style' => 'height:200px;'))}}
Email Title {{ Form::text('emailTitle') }}
Email Footer Bar {{ Form::textarea('emailFooterBar', null, array('style' => 'height:100px;'))}}
Email Footer Copyright {{ Form::textarea('emailFooterCopyright', null, array('style' => 'height:100px;'))}}
SMTP Host {{ Form::text('smtpHost') }}
SMTP Port {{ Form::text('smtpPort') }}
SMTP Encryption {{ Form::select('smtpEncryption', ['none' => 'No encryption', 'tls' => 'TLS', 'ssl' => 'SSL']) }}
SMTP Username {{ Form::text('smtpUsername') }}
SMTP Password {{ Form::password('smtpPassword') }}
SMTP Sender Name {{ Form::text('smtpSenderName') }}
SMTP Sender Email {{ Form::text('smtpSenderEmail') }}

Template Settings

Select template {{ Form::radio('quoteTemplate', 1) }} Line - Extended
{{ Form::radio('quoteTemplate', 2)}} Line - Compact
Template color
Quote text {{ Form::textarea('quoteText', null, array('style' => 'height: 100px;')) }}
Invoice text {{ Form::textarea('invoiceText', null, array('style' => 'height: 100px;')) }}
Receipt text {{ Form::textarea('receiptText', null, array('style' => 'height: 100px;')) }}
Additional invoice line {{ Form::text('additionalInvoiceLine', null, array('style' => 'width: 100%;')) }}

SEPA Settings

General Batch Information

Initiating Party Name {{ Form::text('sepa_initiating_party') }}


Payment Information

Batch Booking {{ Form::checkbox('sepa_batch_booking') }}
Local Instrument Code {{ Form::text('sepa_local_instrument_code') }}
Sequence Type {{ Form::text('sepa_sequence_type') }}
Default Collection Date Today + {{ Form::text('sepa_default_collection_date', null, array('style' => 'width: 100px !important;')) }} days


Creditor Information

Creditor Name {{ Form::text('sepa_creditor_name') }}
Creditor IBAN {{ Form::text('sepa_creditor_iban') }}
Creditor BIC {{ Form::text('sepa_creditor_bic') }}
Creditor Scheme Identification {{ Form::text('sepa_creditor_scheme_identification') }}

Company Information

Company Name {{ Form::text('companyName') }}
Company Address and
telephone number
(max. 4 lines)
{{ Form::textarea('companyAddress', null, array('style' => 'height: 90px;')) }}
Bank Details (1 line) {{ Form::text('bankDetails') }}
@stop