1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02: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"
type="email"
name="{{ $field['key'] }}"
value="{{ old($field['key']) }}"
value="{{ old($field['key'], $this->email ?? '') }}"
/>
@elseif($field['key'] === 'password')
<input