mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-07 07:04:37 -04:00
Show labels of custom fields in registration form
This commit is contained in:
parent
56fe8c08da
commit
9542bcc92e
@ -27,7 +27,11 @@
|
|||||||
<label
|
<label
|
||||||
for="{{ $field['key'] }}"
|
for="{{ $field['key'] }}"
|
||||||
class="input-label">
|
class="input-label">
|
||||||
|
@if(in_array($field['key'], ['custom_value1','custom_value2','custom_value3','custom_value4']))
|
||||||
|
{{ (new App\Utils\Helpers())->makeCustomField($register_company->custom_fields, str_replace("custom_value","client", $field['key']))}}
|
||||||
|
@else
|
||||||
{{ ctrans("texts.{$field['key']}") }}
|
{{ ctrans("texts.{$field['key']}") }}
|
||||||
|
@endif
|
||||||
</label>
|
</label>
|
||||||
|
|
||||||
@if($field['required'])
|
@if($field['required'])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user