This commit is contained in:
Andras Bacsai
2023-06-21 10:53:24 +02:00
parent d0af38fb14
commit 1763e0341d
5 changed files with 33 additions and 40 deletions

View File

@@ -35,17 +35,15 @@
<x-forms.input helper="If SMTP through SSL, set it to 'tls'." placeholder="tls" id="model.smtp.encryption"
label="Encryption" />
</div>
<div class="flex flex-col">
<div class="flex flex-col gap-2 xl:flex-row">
<x-forms.input id="model.smtp.username" helper="SMTP Username" label="Username" />
<x-forms.input type="password" helper="SMTP Password" id="model.smtp.password" label="Password" />
</div>
<div class="flex flex-col gap-2 xl:flex-row">
<x-forms.input id="model.smtp.username" helper="SMTP Username" label="SMTP Username" />
<x-forms.input type="password" helper="SMTP Password" id="model.smtp.password" label="SMTP Password" />
<x-forms.input id="model.smtp.timeout" helper="Timeout value for sending emails." label="Timeout" />
<div class="flex flex-col gap-2 xl:flex-row">
<x-forms.input required id="model.smtp.from_name" helper="Name used in emails." label="From Name" />
<x-forms.input required id="model.smtp.from_address" helper="Email address used in emails."
label="From Address" />
</div>
</div>
<div class="flex flex-col gap-2 xl:flex-row">
<x-forms.input required id="model.smtp.from_name" helper="Name used in emails." label="From Name" />
<x-forms.input required id="model.smtp.from_address" helper="Email address used in emails."
label="From Address" />
</div>
</form>
@if (data_get($model, 'smtp.enabled'))