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