1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/app/Http/Requests/Account/CreateAccountRequest.php

57 lines
1.3 KiB
PHP
Raw Normal View History

<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
2018-10-24 05:50:15 +02:00
namespace App\Http\Requests\Account;
2018-10-24 05:50:15 +02:00
use App\Http\Requests\Request;
2019-06-05 06:06:27 +02:00
use App\Http\ValidationRules\NewUniqueUserRule;
2018-10-24 05:50:15 +02:00
class CreateAccountRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return ! auth()->user();
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
//'email' => 'required|string|email|max:100',
'first_name' => 'required|string|max:100',
'last_name' => 'required|string:max:100',
'password' => 'required|string|min:6',
2019-06-05 06:06:27 +02:00
'email' => new NewUniqueUserRule(),
'privacy_policy' => 'required',
'terms_of_service' => 'required'
];
}
public function sanitize()
{
$input = $this->all();
// $this->replace($input);
return $this->all();
}
}