check() and auth()->user()->hasRole('developer|admin'); } /** * Get the validation rules that apply to the request. * * @return array|string> */ public function rules(): array { return [ 'name' => ['required', 'string', 'max:255'], 'mobile' => ['required', 'string', 'min:10'], 'role' => ['required', 'string'], 'email' => ['required', 'string', 'email', 'max:255', "unique:users,email,".$this->id], 'password' => ['string', 'min:8', 'confirmed','nullable'], ]; } }