mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
Keep old input fields on registration
This commit is contained in:
parent
e3385c7b08
commit
1714c277a1
@ -36,6 +36,7 @@
|
||||
class="input w-full"
|
||||
type="email"
|
||||
name="{{ $field['key'] }}"
|
||||
value="{{ old($field['key']) }}"
|
||||
{{ $field['required'] ? 'required' : '' }} />
|
||||
@elseif($field['key'] === 'password')
|
||||
<input
|
||||
@ -63,6 +64,7 @@
|
||||
id="{{ $field['key'] }}"
|
||||
class="input w-full"
|
||||
name="{{ $field['key'] }}"
|
||||
value="{{ old($field['key']) }}"
|
||||
{{ $field['required'] ? 'required' : '' }} />
|
||||
@endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user