@extends('header') @section('head') @parent @include('money_script') @foreach ($account->getFontFolders() as $font) @endforeach @stop @section('content') @parent
{!! Former::open()->addClass('warn-on-exit') !!}
{!! Former::text('custom_design') !!}

 

{!! Former::select('invoice_design_id') ->placeholder(trans('texts.load_design')) ->style('display:inline;width:180px') ->fromQuery($invoiceDesigns, 'name', 'id') ->onchange('onSelectChange()') ->raw() !!}
{!! Button::normal(trans('texts.help'))->withAttributes(['onclick' => 'showHelp()'])->appendIcon(Icon::create('question-sign')) !!} {!! Button::normal(trans('texts.cancel'))->asLinkTo(URL::to('/settings/invoice_design'))->appendIcon(Icon::create('remove-circle')) !!} @if (Auth::user()->hasFeature(FEATURE_CUSTOMIZE_INVOICE_DESIGN)) {!! Button::success(trans('texts.save'))->withAttributes(['onclick' => 'submitForm()'])->appendIcon(Icon::create('floppy-disk'))->withAttributes(['class' => 'save-button']) !!} @endif
{!! Former::close() !!}
@include('invoices.pdf', ['account' => Auth::user()->account, 'pdfHeight' => 930])
@stop