1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00

Fix email field value in registration form

This commit is contained in:
Benjamin Beganović 2024-03-07 19:13:22 +01:00
parent 8d0544bc72
commit ebba4d5726

View File

@ -86,7 +86,7 @@
class="input w-full" class="input w-full"
type="email" type="email"
name="{{ $field['key'] }}" name="{{ $field['key'] }}"
value="{{ old($field['key']) }}" value="{{ old($field['key'], $this->email ?? '') }}"
/> />
@elseif($field['key'] === 'password') @elseif($field['key'] === 'password')
<input <input