mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-12 06:02:39 +01:00
42 lines
995 B
PHP
42 lines
995 B
PHP
@extends('accounts.nav')
|
|
|
|
@section('content')
|
|
@parent
|
|
@include('accounts.nav_advanced')
|
|
|
|
{{ Former::open()->addClass('col-md-8 col-md-offset-2 warn-on-exit') }}
|
|
{{ Former::populate($account) }}
|
|
|
|
{{ Former::legend('invoice_design') }}
|
|
{{ Former::text('primary_color') }}
|
|
{{ Former::text('secondary_color') }}
|
|
|
|
@if (Auth::user()->isPro())
|
|
{{ Former::actions( Button::lg_success_submit(trans('texts.save'))->append_with_icon('floppy-disk') ) }}
|
|
@else
|
|
<script>
|
|
$(function() {
|
|
$('form.warn-on-exit input').prop('disabled', true);
|
|
});
|
|
</script>
|
|
@endif
|
|
|
|
{{ Former::close() }}
|
|
|
|
<script>
|
|
$(function() {
|
|
var options = {
|
|
preferredFormat: "hex",
|
|
disabled: {{ Auth::user()->isPro() ? 'false' : 'true' }},
|
|
showInitial: false,
|
|
showInput: true,
|
|
allowEmpty: true,
|
|
clickoutFiresChange: true,
|
|
};
|
|
$('#primary_color').spectrum(options);
|
|
$('#secondary_color').spectrum(options);
|
|
});
|
|
</script>
|
|
|
|
|
|
@stop |