mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Merge pull request #6739 from turbo124/v5-develop
Required setup fields
This commit is contained in:
commit
1edea0c016
@ -24,6 +24,7 @@ use App\Services\PdfMaker\Design as PdfMakerDesign;
|
||||
use App\Services\PdfMaker\PdfMaker;
|
||||
use App\Utils\HostedPDF\NinjaPdf;
|
||||
use App\Utils\HtmlEngine;
|
||||
use App\Utils\Ninja;
|
||||
use App\Utils\Number;
|
||||
use App\Utils\PhantomJS\Phantom;
|
||||
use App\Utils\Traits\Pdf\PdfMaker as PdfMakerTrait;
|
||||
@ -110,6 +111,7 @@ class Statement
|
||||
DB::rollBack();
|
||||
}
|
||||
|
||||
|
||||
return $pdf;
|
||||
}
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
{{ ctrans('texts.first_name') }}
|
||||
</dt>
|
||||
<dd class="text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
||||
<input type="text" class="input w-full" name="first_name" value="{{ old('first_name') }}">
|
||||
<input type="text" class="input w-full" name="first_name" value="{{ old('first_name') }}" required>
|
||||
</dd>
|
||||
</div>
|
||||
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:flex sm:items-center">
|
||||
@ -22,7 +22,7 @@
|
||||
{{ ctrans('texts.last_name') }}
|
||||
</dt>
|
||||
<dd class="text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
||||
<input type="text" class="input w-full" name="last_name" value="{{ old('last_name') }}">
|
||||
<input type="text" class="input w-full" name="last_name" value="{{ old('last_name') }}"required>
|
||||
</dd>
|
||||
</div>
|
||||
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:flex sm:items-center">
|
||||
@ -30,7 +30,7 @@
|
||||
{{ ctrans('texts.email') }}
|
||||
</dt>
|
||||
<dd class="text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
||||
<input type="email" class="input w-full" name="email" value="{{ old('email') }}">
|
||||
<input type="email" class="input w-full" name="email" value="{{ old('email') }}"required>
|
||||
</dd>
|
||||
</div>
|
||||
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:flex sm:items-center">
|
||||
@ -38,7 +38,7 @@
|
||||
{{ ctrans('texts.password') }}
|
||||
</dt>
|
||||
<dd class="text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
||||
<input type="password" class="input w-full" name="password">
|
||||
<input type="password" class="input w-full" name="password"required>
|
||||
</dd>
|
||||
</div>
|
||||
</dl>
|
||||
|
Loading…
x
Reference in New Issue
Block a user