['nullable', 'integer', 'min:1'], 'firstname' => ['required', 'string', 'max:100'], 'lastname' => ['required', 'string', 'max:100'], 'email' => ['required', 'email', 'max:150'], 'phone' => ['nullable', 'string', 'max:20'], 'password' => ['nullable', 'string', 'min:8', 'max:120'], 'role_id' => ['nullable', 'integer', 'min:1', 'exists:roles,id'], 'role_name' => ['nullable', 'required_without:role_id', 'string', 'max:100'], 'school_year' => ['required', 'string', 'max:20'], 'school_year_id' => ['prohibited'], 'status' => ['nullable', 'string', 'max:40'], ]; } }