62 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @extends('layouts.admin')
 | |
| 
 | |
| @section('title', trans_choice('general.invoices', 1))
 | |
| 
 | |
| @section('content')
 | |
|     {!! Form::model($setting, [
 | |
|         'id' => 'setting',
 | |
|         'method' => 'PATCH',
 | |
|         'route' => 'settings.update',
 | |
|         '@submit.prevent' => 'onSubmit',
 | |
|         '@keydown' => 'form.errors.clear($event.target.name)',
 | |
|         'files' => true,
 | |
|         'role' => 'form',
 | |
|         'class' => 'form-loading-button',
 | |
|         'novalidate' => true,
 | |
|     ]) !!}
 | |
| 
 | |
|     <div class="card">
 | |
|         <div class="card-body">
 | |
|             <div class="row">
 | |
|                 {{ Form::textGroup('number_prefix', trans('settings.invoice.prefix'), 'font', []) }}
 | |
| 
 | |
|                 {{ Form::textGroup('number_digit', trans('settings.invoice.digit'), 'text-width', []) }}
 | |
| 
 | |
|                 {{ Form::textGroup('number_next', trans('settings.invoice.next'), 'chevron-right', []) }}
 | |
| 
 | |
|                 {{ Form::invoice_text('item_name', trans('settings.invoice.item_name'), 'font', $item_names, null, [], 'item_name_input', null) }}
 | |
| 
 | |
|                 {{ Form::invoice_text('price_name', trans('settings.invoice.price_name'), 'font', $price_names, null, [], 'price_name_input', null) }}
 | |
| 
 | |
|                 {{ Form::invoice_text('quantity_name', trans('settings.invoice.quantity_name'), 'font', $quantity_names, null, [], 'quantity_name_input', null) }}
 | |
| 
 | |
|                 {{ Form::selectGroup('payment_terms', trans('settings.invoice.payment_terms'), 'calendar', $payment_terms, $setting['payment_terms'], []) }}
 | |
| 
 | |
|                 {{ Form::textGroup('title', trans('settings.invoice.title'), 'font', []) }}
 | |
| 
 | |
|                 {{ Form::textGroup('subheading', trans('settings.invoice.subheading'), 'font', []) }}
 | |
| 
 | |
|                 {{ Form::textareaGroup('notes', trans_choice('general.notes', 2)) }}
 | |
| 
 | |
|                 {{ Form::textareaGroup('footer', trans('general.footer')) }}
 | |
|             </div>
 | |
|         </div>
 | |
| 
 | |
|         @permission('update-settings-settings')
 | |
|             <div class="card-footer">
 | |
|                 <div class="row float-right">
 | |
|                     {{ Form::saveButtons(URL::previous()) }}
 | |
|                 </div>
 | |
|             </div>
 | |
|         @endpermission
 | |
|     </div>
 | |
| 
 | |
|     {!! Form::hidden('_prefix', 'invoice') !!}
 | |
| 
 | |
|     {!! Form::close() !!}
 | |
| @endsection
 | |
| 
 | |
| @push('scripts_start')
 | |
|     <script src="{{ asset('public/js/settings/settings.js?v=' . version('short')) }}"></script>
 | |
| @endpush
 |