|
@@ -100,63 +100,64 @@
|
|
|
|
|
|
<div class="row">
|
|
|
<div class="col-md-6 col-lg-4 col-12">
|
|
|
- <!-- Phone -->
|
|
|
+ <!-- Name -->
|
|
|
<div class="form-group">
|
|
|
<div class="custom-file mb-3 mt-3">
|
|
|
<input type="text"
|
|
|
- class="custom-text-input" name="company-phone" id="company-phone">
|
|
|
+ class="custom-text-input" name="company-name" id="company-name">
|
|
|
<label class="custom-text-label selected"
|
|
|
- for="company-phone">{{__('Enter your Company Phone Number')}}</label>
|
|
|
+ for="company-phone">{{__('Enter your Company Name')}}</label>
|
|
|
</div>
|
|
|
- @error('company-phone')
|
|
|
+ @error('company-name')
|
|
|
<span class="text-danger">
|
|
|
{{$message}}
|
|
|
</span>
|
|
|
@enderror
|
|
|
</div>
|
|
|
-<!-- Name -->
|
|
|
+ <!-- adress -->
|
|
|
<div class="form-group">
|
|
|
<div class="custom-file mb-3 mt-3">
|
|
|
<input type="text"
|
|
|
- class="custom-text-input" name="company-name" id="company-name">
|
|
|
+ class="custom-text-input" name="company-adress" id="company-adress">
|
|
|
<label class="custom-text-label selected"
|
|
|
- for="company-phone">{{__('Enter your Company Name')}}</label>
|
|
|
+ for="company-phone">{{__('Enter your Company Adress')}}</label>
|
|
|
</div>
|
|
|
- @error('company-name')
|
|
|
+ @error('company-adress')
|
|
|
<span class="text-danger">
|
|
|
{{$message}}
|
|
|
</span>
|
|
|
@enderror
|
|
|
</div>
|
|
|
- <!-- VAT -->
|
|
|
+ <!-- Phone -->
|
|
|
<div class="form-group">
|
|
|
<div class="custom-file mb-3 mt-3">
|
|
|
<input type="text"
|
|
|
- class="custom-text-input" name="company-vat" id="company-vat">
|
|
|
+ class="custom-text-input" name="company-phone" id="company-phone">
|
|
|
<label class="custom-text-label selected"
|
|
|
- for="company-phone">{{__('Enter your Company VAT')}}</label>
|
|
|
+ for="company-phone">{{__('Enter your Company Phone Number')}}</label>
|
|
|
</div>
|
|
|
- @error('company-vat')
|
|
|
+ @error('company-phone')
|
|
|
<span class="text-danger">
|
|
|
{{$message}}
|
|
|
</span>
|
|
|
@enderror
|
|
|
</div>
|
|
|
|
|
|
- <!-- adress -->
|
|
|
+ <!-- VAT -->
|
|
|
<div class="form-group">
|
|
|
<div class="custom-file mb-3 mt-3">
|
|
|
<input type="text"
|
|
|
- class="custom-text-input" name="company-adress" id="company-adress">
|
|
|
+ class="custom-text-input" name="company-vat" id="company-vat">
|
|
|
<label class="custom-text-label selected"
|
|
|
- for="company-phone">{{__('Enter your Company Adress')}}</label>
|
|
|
+ for="company-phone">{{__('Enter your Company VAT')}}</label>
|
|
|
</div>
|
|
|
- @error('company-adress')
|
|
|
+ @error('company-vat')
|
|
|
<span class="text-danger">
|
|
|
{{$message}}
|
|
|
</span>
|
|
|
@enderror
|
|
|
</div>
|
|
|
+
|
|
|
<!-- email -->
|
|
|
<div class="form-group">
|
|
|
<div class="custom-file mb-3 mt-3">
|
|
@@ -186,6 +187,25 @@
|
|
|
@enderror
|
|
|
</div>
|
|
|
|
|
|
+ <!-- logo -->
|
|
|
+ <div class="form-group">
|
|
|
+ <div class="custom-file mb-3">
|
|
|
+ <input type="file" accept="image/x-icon" class="custom-file-input"
|
|
|
+ name="logo" id="logo">
|
|
|
+ <label class="custom-file-label selected"
|
|
|
+ for="favicon">{{__('Select Invoice Logo')}}</label>
|
|
|
+ </div>
|
|
|
+ @error('logo')
|
|
|
+ <span class="text-danger">
|
|
|
+ {{$message}}
|
|
|
+ </span>
|
|
|
+ @enderror
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- end -->
|
|
|
+
|
|
|
</div>
|
|
|
</div>
|
|
|
|