Minor fixes
This commit is contained in:
parent
f7a31f9ed2
commit
6d8ac6aa35
3 changed files with 2 additions and 2 deletions
|
|
@ -76,7 +76,6 @@ class ContactForgotPasswordController extends Controller
|
|||
|
||||
public function sendResetLinkEmail(ContactPasswordResetRequest $request)
|
||||
{
|
||||
|
||||
$user = MultiDB::hasContact($request->input('email'));
|
||||
|
||||
$this->validateEmail($request);
|
||||
|
|
|
|||
|
|
@ -31,6 +31,7 @@ use App\Repositories\InvoiceRepository;
|
|||
use App\Repositories\QuoteRepository;
|
||||
use App\Repositories\RecurringInvoiceRepository;
|
||||
use App\Services\PdfMaker\Design as PdfMakerDesign;
|
||||
use App\Services\PdfMaker\Design as PdfDesignModel;
|
||||
use App\Services\PdfMaker\Design;
|
||||
use App\Services\PdfMaker\PdfMaker;
|
||||
use App\Utils\HostedPDF\NinjaPdf;
|
||||
|
|
|
|||
|
|
@ -312,7 +312,7 @@ class StripePaymentDriver extends BaseDriver
|
|||
|
||||
$data['name'] = $this->client->present()->name();
|
||||
$data['phone'] = $this->client->present()->phone();
|
||||
|
||||
|
||||
if (filter_var($this->client->present()->email(), FILTER_VALIDATE_EMAIL)) {
|
||||
$data['email'] = $this->client->present()->email();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue