@extends('settings.edit') @section('title') {{ __('messages.invoice_templates') }} @endsection @section('section')
{{ Form::open(['route'=>'invoiceTemplate.update','method' => 'post','id' => 'invoiceSetting','class' => 'invoice-settings']) }}
{{ Form::label('invoice_template',__('messages.setting.invoice_template').':', ['class' => 'form-label mb-3']) }}
{{ Form::label('invoice_color',__('messages.setting.color')) }}
{{ Form::text('default_invoice_color', $invoiceTemplate[0]['template_color'] ?? null,['id' => 'invoiceColor', 'hidden', 'class' => 'form-control']) }}
{{ Form::button(__('messages.common.save'),['type' => 'submit','id' => 'btnSave', 'class' => 'btn btn-primary save-btn-invoice col-6', 'data-loading-text' => " Processing..."]) }}
{{ Form::close() }}

{{ __('messages.setting.invoice_template') }}

{{ Form::hidden('company_address','Rajkot',['id' => 'companyAddress']) }} {{ Form::hidden('company_phone_number', '7405868976',['id' => 'companyPhoneNumber']) }} {{ Form::hidden('company_name', getAppName(),['id' => 'companyName']) }} @endsection