1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00

Fix email value in register-or-login.blade.php

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

View File

@ -120,7 +120,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