2018-10-17 14:26:27 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
|
|
|
|
use App\Http\ValidationRules\UniqueUserRule;
|
|
|
|
use Illuminate\Support\Facades\Auth;
|
2018-10-19 05:45:55 +02:00
|
|
|
use Illuminate\Support\Facades\Hash;
|
2018-10-17 14:26:27 +02:00
|
|
|
|
|
|
|
class SignupRequest extends Request
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
2018-10-19 05:45:55 +02:00
|
|
|
return ! auth()->user();
|
2018-10-17 14:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
//'email' => 'required|string|email|max:100',
|
2018-10-18 12:47:55 +02:00
|
|
|
'first_name' => 'required|string|max:100',
|
|
|
|
'last_name' => 'required|string:max:100',
|
|
|
|
'password' => 'required|string|min:6',
|
|
|
|
'email' => new UniqueUserRule(),
|
|
|
|
'privacy_policy' => 'required',
|
|
|
|
'terms_of_service' => 'required'
|
2018-10-17 14:26:27 +02:00
|
|
|
];
|
|
|
|
}
|
2018-10-19 05:45:55 +02:00
|
|
|
|
|
|
|
public function sanitize()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
|
|
|
// $this->replace($input);
|
|
|
|
|
|
|
|
return $this->all();
|
|
|
|
}
|
|
|
|
|
2018-10-17 14:26:27 +02:00
|
|
|
}
|