Skip to content

Instantly share code, notes, and snippets.

@NazmusShakib
Created February 19, 2018 11:03
Show Gist options
  • Save NazmusShakib/d6f96fae522d1a77f865ab7616081977 to your computer and use it in GitHub Desktop.
Save NazmusShakib/d6f96fae522d1a77f865ab7616081977 to your computer and use it in GitHub Desktop.
Register form request validation
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class RegisterFormRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'name' => 'required|string|unique:users',
'email' => 'required|email|unique:users',
'password' => 'required|string|min:6|max:10',
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment