for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NukaCode\Users\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class Password extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
$this->redirect = route('user.profile') . '#change-password';
return [
'password' => 'required',
'new_password' => 'required|confirmed',
];
}
* Determine if the user is authorized to make this request.
* @return bool
public function authorize()
return auth()->check();